<!--

var ventana = null;
var h_add = 0;

if (navigator.userAgent.indexOf("MSIE 7") != -1 || navigator.userAgent.indexOf("Opera/9") != -1) h_add = 7;

function abreFull(pagina,nombre,w,h) {

 var ventana = open(pagina,nombre,"left=0,top=0,width="+screen.availWidth+",height="+screen.availHeight+",resizable=yes,fullscreen=1");
 //win.moveTo((screen.availWidth-700)/2,(screen.availHeight-420)/2);
 win.focus();

}

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);

}

//-->