function popupWindow(pageURL,windowName,w,h,features)
{
  var winl = (screen.width - w) / 2;
  var wint = (screen.height - h) / 2;
  winprops = 'width='+w+',height='+h+',top='+wint+',left='+winl+','+features
  var popupWindow = window.open( pageURL ,windowName,winprops);
  if (popupWindow)
  {
    popupWindow.focus();
  }
  else
  {
    msg = "A popup blocker may be preventing the new page from opening.\n"
    + "Click OK to load the new page in the current browser.\n"
    + "Click Cancel to return to the current page.\n";
    if (confirm(msg))
      top.location.href = pageURL;
  }
}

function liveHelpLink()
{
  popupWindow("http://support.futurebet.com/request.php?l=phpliveadmin&x=1&deptid=2&page=" + escape(document.location.toString()), "clientSupportWindow", "450", "350", "scrollbars=0");
}

