// a function to validate a password entry
function validate( )
{
//convert the input to lowercase
var entry = document.forms.f.pwd1.value.toLowerCase( );
//relocate the browser if the input is correct
if (  entry =="1ngr4m" ) window.location = "_members/home.htm"; 
else
window.location = "index.htm"
}