﻿<!-- 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=="demo" && password=="demopass") { window.location="private/client_account/index.html"; done=1; }
if (username=="crikeys" && password=="holden79") { window.location="private/crikeyspies/index.html"; done=1; }
if (username=="jrrenova" && password=="renovation06") { window.location="private/jrrenovation/index.html"; done=1; }
if (username=="hvpm" && password=="parent") { window.location="private/hvpm/index.html"; done=1; }
if (username=="allaboutyou" && password=="beauty") { window.location="private/allaboutyou/index.html"; done=1; }
if (username=="sacredheartchurch" && password=="sacredheart05") { window.location="private/sacredheartchurch/index.html"; done=1; }
if (username=="wasny" && password=="art") { window.location="private/wasny/index.html"; done=1; }
if (username=="lerner" && password=="dentist1") { window.location="private/lerner/index.html"; done=1; }
if (username=="chinadoll" && password=="dejeune1") { window.location="private/uniedesigns/index.html"; done=1; }
if (username=="dithv" && password=="winston1") { window.location="private/dithv/index.html"; done=1; }
if (username=="leonardb" && password=="lbakker07") { window.location="private/bakker/index.html"; done=1; }
if (username=="lmessina" && password=="hotcakes9") { window.location="private/wagner/index.html"; done=1; }
if (username=="ildikocsik" && password=="budapest6789") { window.location="private/ildikocsik/index.html"; done=1; }
if (username=="couldnt" && password=="baggy123") { window.location="private/cicc/index.html"; done=1; }
if (username=="mmisch10950" && password=="nleuv256565") { window.location="private/mischler/index.html"; done=1; }
if (username=="kmcdon" && password=="admin123") { window.location="private/jnstowers/index.html"; done=1; }
if (done==0) { alert("Invalid login!"); }
}
// End -->