<!--

var ventana = null;

function abreVentana(pagina, nombre, w, h) {

ventana = open(pagina, nombre, 'width=' + w + ',height=' + h + ',resizable=no');
ventana.moveTo((screen.availWidth-w)/2, (screen.availHeight-h)/2);
ventana.focus();

}

//-->