<!--

var ventana = null;
var h_add = 0;

if (navigator.userAgent.indexOf("MSIE 7") != -1 || navigator.userAgent.indexOf("Opera/9") != -1) h_add = 7;

function abreVentana(pagina,nombre,w,h) {

if (ventana!=null) ventana.close();

ventana = open(pagina,nombre,'width='+w+',height='+h+',resizable=0,status=1,location=0,menubar=0,toolbar=0,directories=0');

ventana.moveTo((screen.availWidth-w)/2,(screen.availHeight-h)/2);

}

//-->
