function verFoto(foto,titulo,horizontal,vertical)
      { 
OpenWindow=window.open("", "newwin", "height="+vertical+", width="+horizontal+",toolbar=no,menubar=no");
OpenWindow.document.write("<head>")
OpenWindow.document.write("<link href='css/ccchamartin.css' rel='stylesheet' type='text/css'>")
OpenWindow.document.write("</head>")
OpenWindow.document.write("<TITLE>PERFILES</TITLE>")
OpenWindow.document.write("<BODY topmargin=0 leftmargin=0 marginwidth=0 marginheight=0 >")
OpenWindow.document.write("<table border=0 cellspacing=0 cellpadding=0 class='clubFoto'>")
OpenWindow.document.write("<tr bgcolor='#000000' align='center'>")
OpenWindow.document.write("<th>"+titulo+"</th>")
OpenWindow.document.write("<tr>")
OpenWindow.document.write("<td><img src="+foto+"></td>")
OpenWindow.document.write("</tr>")
OpenWindow.document.write("<tr>")
OpenWindow.document.write("<td align=right bgcolor='#000000'>")
OpenWindow.document.write("<a href='#' onclick='window.close();'><img src='imagenes/CerrarFoto.gif' alt='' border=0 ></a>")
OpenWindow.document.write("</td>")
OpenWindow.document.write("</tr>")
OpenWindow.document.write("</table>")
OpenWindow.document.write("</BODY>")
OpenWindow.document.write("</HTML>")

OpenWindow.document.close()
self.name="main"
     }
