// JavaScript Document

<!-- PLEASE DO NOT STEAL PASSWORDS FROM THIS PAGE! -->

<!-- THE OACP PROGRAM IS FOR PAYING CUSTOMERS ONLY! -->

<!-- RECEIVING WITHOUT GIVING IS BAD KARMA! -->

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=="allie" && password=="alwlie") {
window.location="OACPAllieNov2007.html"; done=1;
}

if (username=="bella" && password=="bewlra") {
window.location="OACPBellaJune2007.html"; done=1;
}

if (username=="betty" && password=="berrty") {
window.location="OACPBettyJan2007.html"; done=1;
}

if (username=="blueboy" && password=="blqwby") {
window.location="OACPBlueboyAugust2007.html"; done=1;
}

if (username=="chase" && password=="chaser") {
window.location="OACPChaseFeb2008.html"; done=1;
}

if (username=="kelso" && password=="kwelsv") {
window.location="OACPDogSept2007.html"; done=1;
}

if (username=="flaire" && password=="fflare") {
window.location="OACPFlaireJuly2007.html"; done=1;
}

if (username=="howie" && password=="hoiwie") {
window.location="OACPHowieJune2007.html"; done=1;
}

if (username=="ivan" && password=="ivcanw") {
window.location="OACPIvanJuly2007.html"; done=1;
}

if (username=="izzy" && password=="izkyzy") {
window.location="OACPIzzyAntsJune2007.html"; done=1;
}

if (username=="maggie" && password=="mafgge") {
window.location="OACPMaggieDec2007.html"; done=1;
}

if (username=="minna" && password=="mibnva") {
window.location="OACPMinnaNov2007.html"; done=1;
}

if (username=="oliver" && password=="olqver") {
window.location="OACPOliverOct2007.html"; done=1;
}

if (username=="stinki" && password=="stinqk") {
window.location="OACPStinkiOct2007.html"; done=1;
}

if (username=="sabrina" && password=="sabraq") {
window.location="OACPSabrinaApr2008.html"; done=1;
}

if (done==0) { alert("Invalid Login!"); }
}