
/*
funzione apertura popup,
copyrights: Erik Henchoz - info@webnetstudio.it
vietato l'uso non autorizzato dello script
*/


function PrevFoto(img){
foto1= new Image();
foto1.src=(img);
Controllafoto(img);
}

function Controllafoto(img){
if((foto1.width!=0)&&(foto1.height!=0)){
vediFoto(img);
}
else{
funzione="Controllafoto('"+img+"')";
intervallo=setTimeout(funzione,20);
}
}

function vediFoto(img){
largh=foto1.width;
altez=foto1.height;
LeftPosition = (screen.width) ? (screen.width-largh)/2 : 0; 
TopPosition = (screen.height) ? (screen.height-altez)/2 : 0; 


	newWindow = window.open("","newWindow","width="+largh+",height="+altez+",left="+LeftPosition+",top="+TopPosition);
	newWindow.document.open();
	newWindow.document.write('<html><title>Hotel Nordend</title><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" bgcolor="#FFFFFF" onBlur="self.close()" onClick="self.close()">');  
	newWindow.document.write('<table width='+largh+' border="0" cellspacing="0" cellpadding="0" align="center" height='+altez+' ><tr><td>');
	newWindow.document.write('<img src='+img+' width='+largh+' height='+altez+' alt=\"Clic per chiudere la finestra\" />'); 
	newWindow.document.write('</td></tr></table></div></body></html>');
	newWindow.document.close();
	newWindow.focus();




}

