/*POP UP FLASH TEST*/
/*VISIBLE INTO A HTML <div id='flashcontent'>*/

function showPopup(percorso){
   
   			popUp = document.createElement('div');
		 	popUp.style.position = "absolute";
		    popUp.style.top = '160px';
		    popUp.style.left = '50%'; 
		    popUp.style.marginLeft = '-300px';
		    /*popUp.style.marginRight = 'auto';*/
		    popUp.style.maxWidth = "600px";
		    popUp.style.width = "600px";
		    popUp.style.height = "350px";
		    popUp.style.maxHeight = "350px";
		    popUp.style.background = "#FFFFFF";
		    popUp.style.border = "5px solid  #0791EC";   
		    popUp.style.textAlign = "center";
		    popUp.style.fontFamily = "Helvetica";
		    popUp.style.fontSize = "30px";
           	popUp.innerHTML = "<img src='http://www.milanomarittima.it/style/header_popup.jpg' alt='' style='border: none;' /><br/><br/><font style='font-size:24px; color:#0791EC;'>milanomarittima.it</font><br/><font style='font-size:24px; color:#0791EC;'>Scopri la nuova versione del sito</font><br/><a href='"+percorso+"' style='color:#CD3983;'>Entra</a><br/><br/><font style='font-size: 14px;'>Se vuoi consultare pagine Html<br/><a href='' style='color:#000000;' onclick='event.returnValue=false; hidePopup(); return false;'>Chiudi la finestra</a></font>";
   
   			document.getElementById("flashcontent").appendChild(popUp);

}//showPopup

function hidePopup(){
   document.getElementById("flashcontent").removeChild(popUp); 
}//hidePopup
