function popCertificado(imageURL,imageTitle){ 
imgWin=window.open('about:blank','','scrollbars=yes, width=670,height=570,left=0,top=0');
	with (imgWin.document){ 
		writeln('<html><head><title>Grupo OV - Certificados</title>');
		writeln('<style type="text/css"> body {margin-top:0;margin:0;padding:0;} </style>');
		writeln('<sc'+'ript>')
		writeln('function doTitle(){document.title="'+imageTitle+'";alert("lo llamo")}');
		writeln('</sc'+'ript>'); 
		writeln('</head><body bgcolor=000000  onload="doTitle();self.focus()" onblur="self.close()">'); 
		writeln('<img name="imagen" src='+imageURL+' style="display:block"></body></html>'); 
	} 
}