// checkSearched
// exitPopup
// Deps: cookies.js, alerts.js ( for popup )
// Synopsis: check for the "chicago signed up" cookie and pops if not
function checkSearched(exitPopup){

   var isNotMac = (navigator.appVersion.indexOf("Mac")!=-1) ? false : true;
   var haveCookie = getCookie("ChicagoRealEstateCustomer");

   // if they don't have our cookie ... popup the window
   if ( haveCookie == null && isNotMac) {
	popupwindow(exitPopup,"exitPopup",250,525);
   }

}

