function FotoMaior(Titulo,URLFoto,largura,altura)
{
Foto = window.open("", Titulo, "toolbar=0,status=0,menubar=0,scrollbars=0,resizable=0,top=20,left=200,width="+largura+",height="+altura+"");
Foto.document.open();
Foto.document.write("<html><head>");
Foto.document.write("<title> Mareblu Flat </title>");
Foto.document.write("</head><body leftmargin=0 topmargin=0 bgcolor=#8CBADC>");
Foto.document.write("<center><a href='javascript:window.close();'>");
Foto.document.write("<align='center'><IMG border=0 SRC='" + URLFoto + "'>");
Foto.document.write("<br><font face='Verdana' SIZE=2 color=#000000>");
Foto.document.write("Fechar Janela</a></font></center>");
Foto.document.write("</body></html>");
Foto.document.close();
}

