function Resize(imageObject){
	var largura = (imageObject.width) ?  imageObject.width : 750;
	var altura = (imageObject.height) ? imageObject.height : 560;
	var left = (window.screen.width - largura )/2;
	var top = (window.screen.height - altura )/2;
	window.resizeTo(largura+25, altura+50);
	window.moveTo(left-5, top-30);
}
function popupFoto(foto){
	var t = (window.screen.height- 750)/2;
	var l = (window.screen.width - 560)/2;
	settings	=	"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=750,height=540,top="+t+",left="+l;
	windowTag	=	"<head><title>"+foto+"</title><script language='JavaScript' src='javascript.js'></script></head>"+
					"<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'><table height='100%' width='100%' border='0' cellspacing='0' cellpadding='0'><tr><td valign='middle' align='center'>"+
					"<img src='"+foto+"' border='0' onload='javascript:Resize(this);'/></td></tr></table></body>";
	fotoWindow = window.open('', 'foto', settings);
	fotoWindow.document.write(windowTag);
	fotoWindow.document.close();
	fotoWindow.focus();
}