function Abrirfoto(imagem,legenda,fotografo,w,h) {
h2=h+25;
foto = window.open("","_blank","status=no,toolbar=no,location=no,menu=-no,width="+(w+5)+",height="+h2);
foto.document.write("<html><head><title>Associação Ubatuba de Surf</title>");
foto.document.write("</head><body style=\"background-color : #006699; margin: 0px; padding: 0px;\">");
foto.document.write("<img src=\"");
foto.document.write(imagem);
foto.document.write("\" width=\""+w+"\" height=\""+h+"\" style=\"margin: 2px; padding: 0px; border: 0px;\" alt=\"\" />");
foto.document.write("<p style=\"text-align: right; color: white; font-family: verdana; font-size: 10px; margin: 2px 4px; padding: 0px;\">");
foto.document.write(legenda);
foto.document.write(" | foto: ");
foto.document.write(fotografo);
foto.document.write("</p>");
foto.document.write("</body></html>");
}