<!-- Begin

function Login(form) {
username = new Array("monart");
password = new Array("method");
page = "teachers" + ".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 -->