// JavaScript Document
// Begin Authentication
function Login(){
var done=0;
var username=document.login.username.value;
username=username.toLowerCase();
var password=document.login.password.value;
password=password.toLowerCase();
if (username=="itpc" && password=="mj3o72gk") { window.location="ITT/default.htm"; done=1; }
if (username=="itpc" && password=="k3j9skje") { window.location="ITT/default.htm"; done=1; }
if (username=="itpc" && password=="y5er7uh3") { window.location="IST/default.htm"; done=1; }
if (username=="blro" && password=="x6my541e") { window.location="CFA/default.htm"; done=1; }
if (username=="blro" && password=="ftzub6ev") { window.location="ELM/default.htm"; done=1; }
if (done==0) { alert("Invalid login!"); }
}
// End Authentication

