function Resize(imageObject){
	var largura = (imageObject.width) ?  imageObject.width : 800;
	var altura = (imageObject.height) ? imageObject.height : 600;
	var left = (window.screen.width - largura )/2;
	var top = (window.screen.height - altura )/2;
	window.resizeTo(largura+30, altura+60);
	window.moveTo(left-15, 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=800,height=600,top="+t+",left="+l;
	windowTag	=	"<head><title>Foto: "+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();
}