var win=null;
function mostrarimagen(url_imagen,titulo){
 	var img = new Image();
 	img.src = url_imagen;
	ancho = img.width 
	alto = img.height + 50
	win=window.open('',''+titulo+'','width='+ancho+',height='+alto+',scrollbars=no,resizable=0,toolbar=0, top=20, left=100');
	win.document.write ('<html>\n');
	win.document.write ('  <head>\n');
	win.document.write ('  <title>'+titulo+'</title>\n');
	win.document.write ('  </head>\n');
	win.document.write ('  <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" ');
	win.document.write ('   <table width="100%"  border="0" cellspacing="0" cellpadding="0">\n');
	win.document.write ('   <tr>\n');
	win.document.write ('   <td align=center ><img src="' + url_imagen + '" ></td>\n');
	win.document.write ('   </tr>\n');
	win.document.write ('   <tr>\n');
	win.document.write ('   <td align=center><button onClick="window.close()">Cerrar Ventana</button></td>\n');
	win.document.write ('   </tr>\n');
	win.document.write ('   </table>\n');
	win.document.write (' </body>\n');
	win.document.write ('</html>\n');	
}
