<!-- Begin

function Login(form) {
username = new Array("sun");
password = new Array("state");
page = "/sunstate/index" + ".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;
}

function Login(form) {
username = new Array("themim");
password = new Array("survey");
page = "http://www.zoomerang.com/Survey/WEB22A6YYK3NDP";
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 -->
