<!-- Begin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=="jeremy" && password=="gakk") { window.location="home.html"; done=1; }if (username=="dave" && password=="buttslayer") { window.location="home.html"; done=1; }if (username=="jay" && password=="disposable") { window.location="home.html"; done=1; }if (username=="heather" && password=="asspants") { window.location="home.html"; done=1; }if (username=="slap" && password=="batch") { window.location="home.html"; done=1; }if (done==0) { alert("Access Denied!"); }}// End -->
