/**
 * Open the chat in a popup window
 */

function chat_open(url) {
  window.open(url, "Chat", "width=860,height=550,resizable=yes,location=0");
  //return false;
}

