// JavaScript Document

function verFoto(foto)
{	var w = 400; //foto.width * 4;
	var h = 300; //foto.height * 4;
	var pic = window.open('','','width=' + w + ',height=' + h);
	
	pic.document.write('<html><body topmargin=0 leftmargin=0>');
	pic.document.write('<a href="javascript:window.close()">');
	pic.document.write('<img src="' + foto.src.replace("mini/","") + '" border="0" alt="Fechar Janela">');
	pic.document.write('</a></body></html>');
}

function MM_openBrWindow(theURL,winName,features)
{  window.open(theURL,winName,features); }

