var chat = '';

function popup(url, width, height) {
  window.open(url,"_blank","width=" + width + ",height=" + height + ",toolbar=0,location=0,directories=0,resizable=1,status=0,menubar=0,scrollbars=0");
}

function popup2(url, width, height, scrollbars) {
  window.open(url,"_blank","width=" + width + ",height=" + height + ",toolbar=0,location=0,directories=0,resizable=1,status=0,menubar=0,scrollbars=" + scrollbars);
}

function popupChat(url, width, height) {
  if (!chat.closed && chat.location) {
    chat.focus();
  } else {
    chat = window.open(url,"_honchat","width=" + width + ",height=" + height + ",toolbar=0,location=1,directories=0,resizable=1,status=0,menubar=0,scrollbars=0");
    chat.focus();
  }
}

function popupLarge(url, target) {
  window.open(url,target);
}
