//this is the javascript for the BIS
//passworded member's only page
//do not edit unless you know what you are
//doing

var password;

function EnterUser(password)
{
//you can change the password here.
	if (password == 'mishpacha')
	{
//you can change the URL of the member page here
		window.location.href="928729.html";		
	}
	else
	{
		alert ('Sorry, that is not the correct password.');
	}
}