function sin_errores_js()
{
return true;
}

function abrir(url_imagen,ancho,alto){
 	var win=null;
	var img = new Image();
 	img.src = url_imagen;
	win=window.open('','','width='+ancho+',height='+alto+',scrollbars=no,resizable=0,toolbar=0');
    win.document.write ('<html>\n');
	win.document.write (' <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">\n');
	win.document.write ('  <img src="' + url_imagen + '" height='+alto+' width='+ancho+'>\n');
	win.document.write (' </body>\n');
	win.document.write ('</html>\n');	
}

function abrir_enlace(imagen,ancho,alto) 
{ 
controlWindow=window.open(imagen,"","resizable=yes,toolbar=yes,location=yes,menubar=yes,scrollbars=yes,width=" + ancho + " ,height=" + alto)}

