//---------------------------------------------------------------------------------
//  Funcao para abrir uma janela


function AbreJanela (URL, x, y, nome, scroll)
{
  if (nome=='') nome='_blank';

  if (x == '1') {
    tamanho="";
  } else if (x=='') {
    tamanho="width=" + (screen.availWidth-10) + ",innerWidth=" + (screen.availWidth-10) + ",height=" + (screen.availHeight-50) + ",innerHeight=" + (screen.availHeight-50) + ",top=0,left=0,scrollbars=yes";
  } else {
    tamanho="width=" + x + ",innerWidth=" + x + ",height=" + y + ",innerHeight=" + y;
    if (scroll) tamanho+=",scrollbars=yes";
  }

  if (nome == 'USJT_CHAT') {
    USJT_CHAT=window.open (URL, nome, tamanho + ", resizable=yes");
  } else if (nome == 'MURAL') {
    USJT_MURAL=window.open (URL, nome, tamanho + ", resizable=yes");
  } else {
    JanelaUSJT=window.open (URL, nome, tamanho);
  }
}

//---------------------------------------------------------------------------------
// Maplink


function MM_openBrWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}


//---------------------------------------------------------------------------------