// JavaScript Document

function ventana(nombre, ancho, alto)
{
 window.open(nombre,'_blank','scrollbars=yes,resizable=yes,width='+ancho+',height='+alto+',top=15,left=15');
}