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=="chad" && password=="zaufz0") { window.location="secure/secure.html";done=1; }
if (username=="qczone" && password=="qczone") { window.location="clients/qczone/qczone.html";done=1; }
if (username=="family" && password=="family") { window.location="family/family.html";done=1; }
if (done==0) { window.location="incorrect.html"; done=1; }
}

function Enter(){
var done=0;
var password=document.login.top.value;
password=password.toLowerCase();
if (password=="zaufz0") { window.location="secure/secure.html";done=1; }
if (done==0) { window.location="nonadmin.html"; done=1; }
}

