<!--- Hide from tired old browsers
/************************************************
Gate Keeper v2.0 by Joe Barta
 Get your very own Gatekeeper from Professional Web Design
 http://junior.apk.net/~jbarta/weblinks/gate_keeper/
************************************************/
function gateKeeper() {
   var password = prompt("Password required:", "")
   if (password != null){
   var location="../../support/" + password + ".htm";
	document.location.href = location;
	}
}
// done hiding --->
