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=="aa" && password=="aa") { window.location="brett/index.php"; done=1; }
if (username=="sue" && password=="stu") { window.location="clients/corvette_cafe/"; done=1; }
if (username=="brock" && password=="zilla") { window.location="clients/brockzilla/index.php"; done=1; }
if (username=="chrome" && password=="plate") { window.location="clients/otahuhu/index.php"; done=1; }
if (username=="chrome" && password=="platers") { window.location="clients/otahuhu/index.php"; done=1; }
if (username=="ae" && password=="gill") { window.location="clients/aegill/index.php"; done=1; }
if (username=="ae" && password=="gil") { window.location="clients/aegill/index.php"; done=1; }
if (username=="red" && password=="wagon") { window.location="clients/redwagon/index.php"; done=1; }
if (username=="ca" && password=="levien") { window.location="clients/ca_levien/index.php"; done=1; }
if (username=="lyndale" && password=="motors") { window.location="clients/lyndale/index.php"; done=1; }
if (username=="spray" && password=="booth") { window.location="clients/seetal/index.php"; done=1; }
if (username=="ocean" && password=="lift") { window.location="clients/oceanlift/index.php"; done=1; }
if (done==0) { alert("Invalid login!"); }
}

