<!--
  var width = 450;
  var height = 350;
  var left = ((screen.width - width) / 2);
  var top = (((screen.height - height) / 2));


  function atendimento() {
    window.open("entrada_chat.asp", "chat", 
                "left=" + left + ", top=" + top + ", width=" + width + 
                ", height=" + height + ",resizable=no, scrollbars=yes");
  } 

  function encerrar_chat() {
    var f = document.forms[0];
    var id = f.id.value;
    lock=1;
    window.open('encerrar_chat.asp?c=0&id=' + id, '_top');    
  }

  function sair_chat() {
    var f = document.forms[0];
    var id = f.id.value;

    if (!lock)  
      window.open("encerrar_chat.asp?c=1&id=" + id, "_blank", 
                  "left=" + left + ", top=" + top + ", width=" + width + ", height=" + 
                  height + ", directories=no, " + 
                  "location=no, menubar=no, personalbar=no, resizable=no, scrollbars=yes," + 
                  "status=no, toolbar=no, titlebar=yes");  
  }
//-->
