function ventana(fichero,alto,ancho) {
posancho=(screen.width/2)-(ancho/2);
posalto=(screen.height/2)-(alto/2);
vent=window.open(fichero,'documento', 'toolbar=no,location=no,status=no,scrollbars=no,resizable=0,titlebar = no,top='+posalto+',left='+posancho+',width='+ancho+',height='+alto);
vent.focus();
}
