
function EnlargeImg(picname)
{
	var dom = '';
	var imgdom = '' ;
	var absdir = 'images/';
	var wwidth = 610;
	var wheight = 860;
	var bigpicname = absdir+picname;
	
	ShowWindow = window.open('','','width='+wwidth+',height='+wheight+',resizable=yes,scrollbars=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=#6699CC link=#DBDBDB alink=#DBDBDB vlink=#DBDBDB><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();
}

function EnlargeFoto(picname)
{
	var dom = '';
	var imgdom = '' ;
	var absdir = 'images/foto/';
	var wwidth = 1100;
	var wheight = 800;
	var bigpicname = absdir+picname;
	
	ShowWindow = window.open('','','width='+wwidth+',height='+wheight+',resizable=yes,scrollbars=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=#6699CC link=#DBDBDB alink=#DBDBDB vlink=#DBDBDB><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();
}
