
		function openWin(picSrc,imgnombre,ancho,largo,titulo)
		{
			newWin = window.open('', '','width=500,height=650, toolbars=no, scrollbars=yes, resizable=yes,left=0,top=0, status=no');
			newWin.document.write("<body onLoad='self.focus();'>");
			newWin.document.write("<head><title>"+ picSrc + "</title></head>");
			newWin.document.write("<table border=1 bordercolor=#707B89 align=center>");
			newWin.document.write("<tr align=center><td><img name='Foto' src=" + picSrc + " alt='Imagenes'")
			newWin.document.write("</td></tr><tr bgcolor=#D1D7DF><td align=center><font face=Verdana, Arial, Helvetica, sans-serif size=2 color=#000000>"+ imgnombre +"</font></td></tr></table>");
			newWin.document.write("</body>");
			newWin.document.close();
		}
