
////////// POPUP
var popUp = null;
function popup(immagine,larghezza,altezza)
{	
	if (popUp != null && !popUp.closed) {
		popUp.close();
	}
	var l = Math.floor((screen.width-larghezza)/2);
   	var t = Math.floor((screen.height-altezza)/2);
	popUp = open("","popUp","left="+l+", top="+t+", resizable, width="+larghezza+", height="+altezza+", scrollBars=0,menubar=no,toolbar=no,status=no,directories=no,location=no");
	popUp.document.write("<html><head><title>Gioielleria Bonori</title></head><body style=\"background: #000000 url(" + immagine +") no-repeat center;height: "+(altezza-5)+"px;\"></body></html>"); 	
	popUp.focus();
	popUp.document.close();
}
//-->

