// JavaScript Document
function tmt_fullscreen(url, scrollo) { //abre janela em tela inteira
    var larg_schermo = screen.availWidth - 10;
    var altez_schermo = screen.availHeight - 30;
    window.open(url, "WindowName", "width=" + larg_schermo + ",height=" + altez_schermo + ",top=0,left=0,scrollbars=" + scrollo + "");
}

function MM_openBrWindow(theURL,winName,features) { //v2.0 abre nova janela customizada
  window.open(theURL,winName,features);
}
