
function EnlargeImg(picname)
{
	var dom = '';
	var imgdom = '' ;
	var absdir = 'gallery/';
	var wwidth = 800;
	var wheight = 600;
	var bigpicname = absdir+picname;
	
	ShowWindow = window.open('','','width='+wwidth+',height='+wheight+',resizable=yes');
    ShowWindow.moveTo((screen.width-wwidth)/2,(screen.height-wheight)/2);
	ShowWindow.document.open();
	ShowWindow.document.write("<html><head><title>&gt;&gt; Cliccare sulla foto per chiudere la finestra</title></head><body leftmargin=5 topmargin=5 marginwidth=5 marginheight=5 bgcolor=#E8E2d0 link=#CCCC99 alink=#DCD1AD vlink=#DCD1AD><div align='center'><a href='javascript:close()'><img src='"+ bigpicname +"' onload='window.resizeTo(this.width+25,this.height+65);window.moveTo((screen.width-this.width)/2,(screen.height-this.height)/2)' border='3' class='imgBig'></a></div></body></html>");
    ShowWindow.document.close();
}

function EnlargePict(picname)
{
	var dom = '';
	var imgdom = '' ;
	var absdir = '../Immagini/';
	var wwidth = 470;
	var wheight = 360;
	var bigpicname = absdir+picname;
	
	ShowWindow = window.open('','','width='+wwidth+',height='+wheight+',resizable=yes');
    ShowWindow.moveTo((screen.width-wwidth)/2,(screen.height-wheight)/2);
	ShowWindow.document.open();
	ShowWindow.document.write("<html><head><title>&gt;&gt; Click on the picture to close this window</title></head><body leftmargin=3 topmargin=3 marginwidth=3 marginheight=3 bgcolor=#FFF7D0 link=#CCCC99 alink=#DCD1AD vlink=#DCD1AD><div align='center'><a href='javascript:close()'><img src='"+ bigpicname +"' onload='window.resizeTo(this.width+25,this.height+65);window.moveTo((screen.width-this.width)/2,(screen.height-this.height)/2)' border='3'></a></div></body></html>");
    ShowWindow.document.close();
}
