	<!--
		
		// checks to see if the client is a spider
		function spiderClient() {
			var spiderFound = false;
			var useragent = window.navigator.userAgent;
			useragent = useragent.toUpperCase();
			if(useragent.substring(0, 6) == "GOOGLE" || useragent.substring(0, 7) == "BACKRUB") {
				// should match all Google Spiders
				spiderFound = true;
			} else if(useragent.substring(0, 5) == "YAHOO") {
				// should match all Yahoo spiders
				spiderFound = true;
			} else if(useragent.substring(0, 6) == "MSNBOT") {
				// should match all MSN spiders
				spiderFound = true;
			} else if(useragent.substring(0, 5) == "LYCOS") {
				// should match Lycos
				spiderFound = true;
			} else if(useragent.substring(0, 8) == "MERCATOR") {
				// should match AltaVista
				spiderFound = true;
			}
			return spiderFound;
		}
		
		// gets the zipcode cookie data from the club's cookie
		function getCookie(CookieName) {
			var search = CookieName + "=";
			if(document.cookie.length > 0) {
				offset = document.cookie.indexOf(search);
				if(offset != -1) {
					offset += search.length;
					end = document.cookie.indexOf(";", offset);
					
					if(end == -1) {
						end = document.cookie.length;
					}
					return document.cookie.substring(offset, end);
				}
			}
		}

	// -->
