var ventana=null;
function mostrarimagen(nombre_imagen,titulo,ancho,alto){
var img = new Image(ancho,alto);
var width_img = img.width + 2;
var height_img = img.height + 2;
img.src = nombre_imagen;
ventana=window.open('','','width='+width_img+',height='+height_img+',scrollbars=no,resizable=1,toolbar=0');
ventana.document.write ('<html>\n');
ventana.document.write (' <head>\n');
ventana.document.write (' <title>'+titulo+'</title>\n');
ventana.document.write (' </head>\n');
ventana.document.write (' <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" bgcolor="#000000">\n');
ventana.document.write ('<a href="JavaScript:this.close()" border="0">');
ventana.document.write (' <img src="' + img.src + '" height='+img.height+' width='+img.width+' border="0" align="center">\n');
ventana.document.write ('</a>');
ventana.document.write (' </body>\n');
ventana.document.write ('</html>\n');
ventana.document.close();
}	  