<!-- Begin

function Login(form) {
username = new Array("CE572R4");
password = new Array("RS8721W");
page = "success" + ".html";
if (form.username.value == username[0] && form.password.value == password[0] ) {
self.location.href = page;
}
else {
alert("Either the username or password you entered is incorrect.\nPlease try again.");
form.username.focus();
}
return true;
}

// End -->

