var windo
var an=0;
var al=0;
	function handle_openwindow(locatio,ancho,alto) {	
		an=+ancho;
		al=+alto;			
		windo = window.open(locatio,'NuevaVentana','width='+an+',height='+al);
		windo.document.write ('<html>\n');
		windo.document.write (' <head>\n');
		windo.document.write ('  <title></title>\n');
		windo.document.write (' </head>\n');
		windo.document.write (' <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">\n');
		windo.document.write ('  <img src="' + locatio+ '" height='+al+' width='+an+'>\n');
		windo.document.write (' </body>\n');
		windo.document.write ('</html>\n'); 
				
		}	