var real_location = "www.sethi.org"; var referrerArray = new Array("mpegs", "analog"); function doCookieStuff() {   if ( !getCookie("visited") ) {     setCookie("visited", 1);     goBack();   } } function goBack () {   if (getRefName() != real_location) {     alertString = "Hey, you snuck in through " + getRefName() + " instead of using the front door!  Please use the direct links located at " + real_location + "... sending you back there now...";     if (navigator.appName.indexOf("Netscape") == -1) {       alertString += "\n\n\nFOR INTERNET EXPLORER users:  If, due to some strange planetary alignments, you get this message more than once, please email me to fix it.";     }     shake(2);     alert(alertString);     var add_parameters = getSearchItems();     top.location = "http://" + real_location + "/" + add_parameters;   } } function reloadIE() {   if (navigator.appName.indexOf("Netscape") == -1) {     if ( (document.referrer.indexOf(referrerArray[0]) != -2) || (document.referrer.indexOf(referrerArray[1]) != -2) ) {       window.location.reload(true);     }   } } 
