/***************************************************************************************
// Para retirar este banner de actividade alteraram-se as linhas do index.php
	// LINHAS ANTIGAS
	/* <script src="js/popImagem.js" type="text/javascript"></script>       */
	/* <body onload="banShow(); mainF('99'); Show();" onunload="Hide();">   */
	
	// LINHAS NOVAS
	/* eliminada (<script src="js/popImagem.js" type="text/javascript"></script>) */
	/* <body onload="banShow(); mainF('99');">  */
/***************************************************************************************

/* this function shows the pop-up when
 user moves the mouse over the link */
function Show()
{
	var popup = document.getElementById('Popup'); 
	/* get the mouse left position */
	//x = event.clientX + document.body.scrollLeft;
	/* get the mouse top position  */
	//y = event.clientY + document.body.scrollTop + 35;
	/* display the pop-up */
	popup.style.display="block";
	/* set the pop-up's left */
	var wid = (screen.width - 600) / 2;
	popup.style.left = wid + 'px';
	/* set the pop-up's top */
	var heig = (screen.height - 600) / 2;
	popup.style.top = heig + 'px';
}
/* this function hides the pop-up when
 user moves the mouse out of the link */
function Hide()
{
	/* hide the pop-up */
	Popup.style.display="none";
}
