/* All this script are made by Madde di Gianluca Ventani [www.madde.it] Copyright 1996 - 2007*/

function PopUpPage(PageUrl, dimX, dimY, NomeFinestra)
{
	Attributi="toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width="+dimX+",height="+dimY;
	var q = window.open(PageUrl, NomeFinestra, Attributi);
}

function PopUpImage(ImgUrl, dimX, dimY, NomeFinestra)
{
	Attributi="toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+dimX+",height="+dimY+"";
	var q = window.open("", NomeFinestra, Attributi);
	q.document.open();
	q.document.writeln("<html><head><title>" + NomeFinestra + "</title></head><body bgcolor=\"#FFFFFF\" marginheight=\"0\" bottommargin=\"0\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" onload=\"window.focus();\"><table height=\"100%\" width=\"100%\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\"><td width=\"100%\" height=\"100%\" valign=\"middle\" align=\"center\"><img src=\""+ImgUrl+"\">");
	q.document.writeln("</td></table></body></html>");
	q.document.close();
	q.moveTo(300,300);
}

function zoom(imgUrl,dimX,dimY)
{
	//dimX = 500;
	//dimY = 375;
	Attributi="toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+dimX+",height="+dimY;
	var q = window.open("", "Zooom", Attributi);
	q.document.open();
	q.document.writeln("<html><body bgcolor=\"#000000\" marginheight=\"0\" bottommargin=\"0\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" onload=\"window.focus();\"><table height=\"100%\" width=\"100%\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\"><td width=\"100%\" height=\"100%\" valign=\"middle\" align=\"center\">");
	q.document.writeln("<a href=\"javascript:self.close();\"><img alt=\"clicca per chiudere\" title=\"clicca per chiudere\" src=\""+imgUrl+"\" border=\"0\"></a>");
	q.document.writeln("</td></table></body></html>");
	q.document.close();
}

function zoomplus(imgUrl,dimX,dimY)
{
	//inserisce la foto come BG e sopra mette il logo...
	//dimX = 500;
	//dimY = 375;
	Attributi="toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+dimX+",height="+dimY;
	var q = window.open("", "Zooom", Attributi);
	q.document.open();
	q.document.writeln("<html><body bgcolor=\"#000000\" background=\""+imgUrl+"\" marginheight=\"0\" bottommargin=\"0\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" onload=\"window.focus();\"><table height=\""+dimY+"\" width=\""+dimX+"\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\"><td width=\""+dimX+"\" height=\""+dimY+"\" valign=\"bottom\" align=\"right\">");
	q.document.writeln("<img src=\"../graph/logo_foto.gif\">");
	q.document.writeln("</td></table></body></html>");
	q.document.close();
}

