function popupPhoto(windowtitle, theURL)
{
 win=window.open("","Foto","width=400,height=400,scrollbars=yes,resizable=yes");
 win.document.write('<html><head><title>' + windowtitle + '</title></head>');
 win.document.write('<body bgcolor="#003A51">');
 win.document.write('<a href="javascript:close();"><img src="' + theURL + '" border="0" vspace="2"></a>');
win.document.write('<p align="center">');
win.document.write('<a href="javascript:window.close();"><img src="../include/img/delete_small_icon.gif" height="15" width="15" border="0" alt="Cerrar ventana"></a>');
win.document.write('</p>');
 win.document.write('</body>');
 win.document.write('</html>');
}

