

function openFullscreen(page) {
var yes = 1;
var no = 0;
var menubar = no;
var scrollbars = no;
var locationbar = no
var directories = no;
var resizable = yes;
var statusbar = no;
var toolbar = no;

ventana = "width=" + (screen.width-10) + ",height=" + (screen.height-55) + ",top=0,left=0";

ventana += (menubar ? ",menubars" : "") +
(scrollbars ? ",scrollbars" : "yes") +
(locationbar ? ",location" : "") +
(directories ? ",directories" : "") +
(resizable ? ",resizable" : "") +
(statusbar ? ",status" : "") +
(toolbar ? ",toolbar" : "");

window.open(page, "tes",ventana);
}

function tmt_fullscreen(url, scroller) {
  	var larg_schermo = screen.availWidth;
    var altez_schermo = screen.availHeight;
    window.open(tes.htm, "start", "width=" + larg_schermo + ",height=" + altez_schermo + ",top=0,left=0,scrollbars=" + scroller + "");
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


