    /* Another JavaScript from Uncle Jim
    | Feel free to copy, use and change This script as long as this part remains unchanged. You can visit my website at http://jdstiles.com for more scripts like this one.  Created: 1996 Updated: 2006
    */

    function Login(){
    var done=0;
    var username=document.login.username.value;
    var password=document.login.password.value;
    if (username=="Darryll" && password=="Darryll") { window.location="Dealers/Dealers.html"; done=1; }
    if (username=="Bernard" && password=="Bernard") { window.location="Dealers/Dealers.html"; done=1; }
    if (username=="Jill" && password=="Jill") { window.location="Dealers/Dealers.html"; done=1; }
    if (username=="Dealer1" && password=="Dealer1") { window.location="Dealers/Dealers.html"; done=1; }
    if (username=="Dealer2" && password=="Dealer2") { window.location="Dealers/Dealers.html"; done=1; }
    if (done==0) { window.location="Dealers/Failed.html"; }
    }
    //