/********************************
  by Joe Barta & Jock Dempsey
*********************************/
function gatekeeper () {
	var password = prompt("Password required:", "")
	var location= "" + password + "/Gate_Pass.htm";
    if (location != "/Gate_Pass.htm")    
        {
    	this.location.href = location;
        }
    
    }
