function abrirpopup(nombre,ancho,alto) {
if (ancho>600) 
{ancho=600}
if (alto>400)
{alto=400}
dat = 'width=' + (ancho+20) + ',height=' + (alto+20) + ',left=0,top=0,scrollbars=yes,resize=yes';
window.open(nombre,'',dat)
}