<!--
//exit.js
var br_passin = '';
var br_timerpop = br_GetCookie("br_timerpop");
//alert( window.location.hostname );
function pass_data (key, value) { br_passin = br_passin + '&' + key + '=' + value; }
function br_exitWin () {
	if (navigator.userAgent.toLowerCase().indexOf("googlebot") != -1) {  //googlebot found
		return true;
	}
	//alert(br_timerpop);
	if (!br_exit_supported_browser()) { return true; }
	if (br_timerpop != 1){
	if (br_dontshow == 0 && !br_blocked) {
		// pause the refresh of the indomain flag while we're checking the exit status
		clearTimeout(br_indomain_timeout);
		br_indomain_timeout = setTimeout("br_indomain_loop()", br_invite_delay);
		br_write_cookie('br_indomain', 0);
		try {
			
			br_write_cookie("br_timerpop", 1);
			br_ExitPop = window.open("/omax/bizrate/timer.html",'exit','width=1,height=1,top=3000,left=3000,screenX=3000,screenY=3000,alwaysLowered=yes,dependent=no,resizable=yes');
			br_ExitPop.br_passin = br_passin;
			//alert ("i am opening popup");
		} catch (e) {
			br_blocked = 1;
		    br_write_cookie("br_blocked",br_blocked);
		}
  	}
	}else{
	//alert("No popup again");
	}
}

if (!br_invited) {
 if (!br_blocked) {
  try {
    if ( (br_shopcart > 0 || br_all > 0) && (br_rdm < br_pitch_possibility_random) ) {
      var oldUnload = (window.onload) ? window.onload : function() {};
	  window.onload = function() { br_exitWin(); oldUnload(); }
      if (br_friendly == 1) {
        var oldOnload = (window.onload) ? window.onload : function() {};
        window.onload = function() { br_friendly_links(); oldOnload(); }
	  }
    }
  } catch (e) {
  }
 }
}
//-->
