// Java Document

<!--


function member_pass()

{
access=false;
name="";
password="";
name=prompt("Your Name:","");
name=name.toLowerCase();
password=prompt("Password:","");
password=password.toLowerCase();
if (name=="freeflowdiver" && password=="2006manta!") 
	{access=true; window.location="members.html";}
if (name=="committee" && password=="2006whaleshark!") 
	{access=true; window.location="committee.html";}
if (access==false) {alert("Sorry - you have not given the correct input !");}
}

// -->
