function Login(form) {
username = new Array("jce");
password = new Array("pricelist");
page = "download" + ".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;
}