﻿function OpenUrlCenter(Dest, Trg, wi, hi)
{
   window.open (Dest, Trg, 'toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,top=' + ((screen.height-hi)/2) + ',left=' + ((screen.width/2)- wi/2) + ',width=' + wi + ',height=' + hi);
}

var wndZoom = null;
function MostraIngrandimento(FILE,WID,HEI)
{
	var wndParams = "scrollbars=no,resizable=no,location=no,menubar=no,status=no,width=" + WID + ",height=" + HEI;
	var html = "<html><head><title>Associazione Albergatori Taormina<\/title><\/head>";
	html += "<body style=\"margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px;\">";
	html += "<table cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; height:100%;\"><tr style=\"cursor:pointer;cursor:hand;\">";
	html += "<td style=\"background-image: url(" + FILE + ");\" onclick=\"self.close();\">";
	html += "<img src=\"/images/spacer_trasp.gif\" border=\"0\" width=\"" + WID + "\" height=\"1\">";
	html += "<\/td><\/tr><\/table><\/body><\/html>";
	if(wndZoom) { if(!wndZoom.closed) { wndZoom.close(); }}
	wndZoom = open('', 'Zoom', wndParams);
	wndZoom.document.write(html);
	wndZoom.document.close();
}