function IsPopupBlocker() {
			var oWin = window.open("","testpopupblocker","width=100,height=50,top=5000,left=5000");
			if (oWin==null || typeof(oWin)=="undefined") {
				return true;
			} else {
				oWin.close();
				return false;
			}
		}

		if (IsPopupBlocker()) {
			//alert("You have a popup blocker enabled.\nPlease allow popups from Palm Beach County.");
		}
