function popupv (URL){ 
window.open(URL,"ventana1","width=450, height=380, scrollbars=no, menubar=no, location=no, resizable=no") 
} 

function PopUp(thePhoto) {
ancho=640;
alto=480;
derecha=(screen.width-ancho)/2;
arriba=(screen.height-alto)/2;
props = 'width=' + ancho + ', height=' + alto + ', scrollbars=yes, resizable=no left=' + derecha + ', top=' + arriba;
var w=window.open("",'',props)
w.document.write("<html><head><title>KUN Aguero</title><script language=JavaScript>function click() { if (event.button==2) { window.close(self) } } document.onmousedown=click //--></script><LINK href=estilos.css rel=STYLESHEET type=text/css></head><body topmargin=0 leftmargin=0 bgcolor=#000000 oncontextmenu='return false' onselectstart='return false' ondragstart='return false'><table border=0 align=center width=100% height=100%><tr><td align=center valign=middle><a href=# onclick=window.close(self)><img src="+thePhoto+" border=0 alt='Click aquí para cerrar la ventana'></A></td></tr></table></body></html>");
}
