<!--
function validate ()
{
if (myForm.UserID.value != "bvcorvette")
  {
    alert("You must enter a valid User ID and Password, including correct upper and lower case characters.");
    myForm.UserID.value = "";
    myForm.password.value = "";
    myForm.UserID.focus();
    return (false);
  }
else if (myForm.password.value != "corvette")
  {
    alert("You must enter a valid User ID and Password, including correct upper and lower case characters.");
    myForm.UserID.value = "";
    myForm.password.value = "";
    myForm.UserID.focus();
    return (false);
  } 
else
	{
	myForm.action = "Members_Page.htm"
	return (true);
	}

}
-->