function checkCookieAndOpenNewWindowIfNeeded() {
  var aCookie = document.cookie.split("; ");
  for (var i = 0; i < aCookie.length; i++) {
    var aCrumb = aCookie[i].split("=");
    if ((aCrumb[0] == "PMCustomerClose") || (aCrumb[0] == "PMCustomerAlreadyRegistered")) {
      return;
    }
  }
  showDiv();
}

function showDiv() {
  //fix for hiding bb in other browsers besides IE
  //if(navigator.appName!="Microsoft Internet Explorer") return;
  // remove it for working with all!
  var homeurl = "http://" + window.location.hostname + "/";
  var currenturl = window.location.toString();
  var xcc = currenturl.substr(currenturl.length - 1, 1);
  if (is_frameless == 1) {
    //alert('framelsee');
    if (xcc == "\/") {

      if (document.getElementById && document.getElementById('bb_area')) {
        document.getElementById('bb_area').style.top = topd - dy;
        document.getElementById('bb_area').style.display = 'block';
        document.getElementById('bb_area').style.position = 'absolute';


        if (navigator.appName == "Microsoft Internet Explorer") {
          if (document.getElementById('main') != null) {
            document.getElementById('bb_area').style.left = (document.getElementById('main').clientWidth / 2) - 190;
          } else {
            document.getElementById('bb_area').style.left = (document.body.clientWidth / 2) - 190;
          }
        } else {
          document.getElementById('bb_area').style.left = (document.body.clientWidth / 2) - 190;
        }
        document.getElementById('bb_area').style.visibility = 'visible';
        setTimeout("moveDiv()", 2000);
      } else {
        var bars = "width=380,height=295,menubar=no,location=no,toolbar=no,scrollbars=yes";
        var pre_host = "";
        if (window.custom_url) {
          pre_host = window.custom_url;
        }
        var newWin = open(pre_host + '/CustomerEmailFormGenerator?nie=1', "BB", bars);
        newWin.screenY = topd + 180;
        newWin.focus();
      }
    }
  } else {
    //alert('frames');
    if (document.getElementById && document.getElementById('bb_area')) {
      document.getElementById('bb_area').style.top = topd - dy;
      document.getElementById('bb_area').style.left = leftd;
      document.getElementById('bb_area').style.display = 'block';
      document.getElementById('bb_area').style.position = 'absolute';
      document.getElementById('bb_area').style.visibility = 'visible';
      setTimeout("moveDiv()", 2000);
    } else {
      var bars = "width=380,height=295,menubar=no,location=no,toolbar=no,scrollbars=yes";
      var pre_host = "";
      if (window.custom_url) {
        pre_host = window.custom_url;
      }
      var newWin = open(pre_host + '/CustomerEmailFormGenerator?nie=1', "BB", bars);
      newWin.screenX = leftd + 200;
      newWin.screenY = topd + 180;
      newWin.focus();
    }
  }
}

function moveDiv() {
  if (document.getElementById) {
    if (dy > 0) document.getElementById('bb_area').style.top = topd - dy;
  } else {
    if (dy > 0) document.layers['bb_area'].top = topd - dy;
  }
  dy = dy - 2;
  setTimeout("moveDiv()", 10);
}

var onbblayer = false;

function hideDiv(obj) {
  if (document.getElementById) {
    if (document.getElementById('bb_area').visibility == "show") document.getElementById('bb_area').focus();
  }
  return;
}
if (auto_capture_flag == 1) {
  checkCookieAndOpenNewWindowIfNeeded();
}