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=="tobyhanna" && password=="tbhnas280") { window.location="tbhnatemp.html"; done=1; }
if (username=="ray" && password=="test") { window.location="index.html"; done=1; }
if (username=="tobympn" && password=="tobyresets") { window.location="toby1temp.html"; done=1; }
if (username=="lssiavim" && password=="shopsets") { window.location="lear1temp.html"; done=1; }
if (username=="lssiavum" && password=="avumshops") { window.location="AVUMtemp.html"; done=1; }
if (done==0) { alert("Invalid login!"); }
}
