<!-- Hide from old browsers
/****************
  by Joe Barta & Jock Dempsey
****************/
function gatekeeper () {
	var password = prompt("Password required:", "")
	var location= "" + password + "/login.htm";
    if (location != "..//login.htm")                //if not null
        {
    	this.location.href = location;
        }
    
    }

// done hiding --->