<!--
// FUNZIONE PER APRIRE CENTRATO IL POPUP DELLA MAPPA ATTRAZIONI
function video(URL,nome,largo,alto){
	posh=Math.floor((screen.height-alto)/2); 
	posw=Math.floor((screen.width-largo)/2); 
	var mappa = window.open(URL,nome,"width="+largo+",height="+alto+",top="+posh+",left="+posw+",scrollbars=no,resizable=no,status=no,location=no,toolbar=no,menubar=no"); 
	mappa.focus();
} //end func
//-->
