
        
      <!-- Hide JavaScript
        function overload(){
          window.status="You were warned, Overloading Stack now..."
          overload()
        }
        function warn(evnt){
          if (navigator.appName.toUpperCase().match(/NETSCAPE/) != null) {
            if (evnt.which >= 2){
              alert("Sorry, Right Clicking is disabled!\nContinuing to right click will result in a stack overflow!");
              document.onmouseup=overload
              return false;
            }
          } else {
            if (event.button != 1){
              alert("Sorry, Right Clicking is disabled!\nContinuing to right click will result in a stack overflow!");
              document.onmouseup=overload
              return false;
            }
          }
        }
        function goaway(evnt){
          if (evnt.which == 0){
            alert("Automatically redirecting to a blank page so you can't view this source!\nDon't Press Control, Shift, or Caps Lock and this won't happen.\nPress ALT Left Arrow to return to this screen after clicking OK.");
            location.href = "blank.htm"
            return false;
          }
        }
        document.onkeypress=goaway;
        document.onmousedown=warn;
        if (document.layers) window.captureEvents(Event.MOUSEDOWN);
        window.onmousedown=warn;
      // -->
  

