function MuestraImagen(url_imagen){ 
	
	var img = new Image();
  	img.src = url_imagen;

	 
  	 win=window.open('','','width='+640+',height='+480+',scrollbars=no,resizable=1,toolbar=0');
	 win.document.write ('<html>\n');
	 win.document.write (' <head>\n');
	 win.document.write ('  <title>'+ 'La Zarza' +'</title>\n');
	 win.document.write (' </head>\n');
	 win.document.write (' <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">\n');
	 win.document.write ('  <img src="' + url_imagen + '" height='+img.height+' width='+img.width+'>\n');
	 win.document.write (' </body>\n');
	 win.document.write ('</html>\n');
} 
function ActualizaVentana(){
  window.open(document.Formulario.Lista.value,"_self");
}


