function ampliar2(imagen,ancho,alto,titulo) {
var ventana = window.open('','','scrollbars=no,menubar=no,toolbar=no,width='+ancho+' height='+alto+'');
ventana.document.open();
ventana.document.write('<html><head><style>body{margin:0 0 0 0 }</style><title>' + titulo + '</title></head><body><img src="img/' + imagen + '"></body></html>');
ventana.resizeTo(ancho, alto);
ventana.focus(); 
}
