<!--- Hide from tired old browsers
                var nifty_little_window = null;
                function gateKeeper() {
                nifty_little_window = window.open('security.html', 'theKeeper',
                'width=350,height=200,resizable=0,left=500,top=300');
                }
                // End hiding --->
                
                <!--- Hide from tired old browsers that should be put to pasture.
                
                function open_gatekeeper(url) {
morgan = window.open(url,"gatekeeper",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=yes,width=350,height=200,left=400,top=100');

}




function goForit() {
  var location;
  var password;
  password=this.document.testform.inputbox.value
  location=password + ".html"
  fetch(location)
  theKeeper=window.close()
}

function fetch(location) {
  var root;
  if (opener.closed) {
    root=window.open('','theKeepersGopher','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=no,resizable=yno,copyhistory=no,');
    root.location.href = location;
  } else {
    opener.location.href = location;
  }
}

// End hiding --->