// JavaScript Document


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=="dealers" && password=="1215") { window.location="http://www.allyscandle.com/index/DEALERLOGON.html"; done=1; }
if (username=="6742phila" && password=="derosier") { window.location="http://allyscandle.com/index/DEALERPERSONALPAGE-DEROSIER2010.html"; done=1; }
if (username=="5061va" && password=="letsdish") { window.location="http://allyscandle.com/index/WHOLESALE-LETSDISH.html"; done=1; }
if (username=="partyhosting" && password=="1208") { window.location="http://allyscandle.com/index/PARTYHOSTINGPERSONALPAGESAMPLE.html"; done=1; }
if (username=="fundraising" && password=="1318") { window.location="http://www.allyscandle.com/index/FUNDRAISINGPERSONALPAGEDEMO.html"; done=1; }
if (username=="6742phila" && password=="1234") { window.location="http://www.allyscandle.com/index/DEALERPERSONALPAGE-DEROSIER2010LINKBROKEN.html"; done=1; }
if (username=="partyhosting" && password=="scottfenn") { window.location="http://www.allyscandle.com/index/PARTYHOSTINGPERSONALPAGESAMPLE.html"; done=1; }
if (username=="3231homeshow" && password=="derosier") { window.location="http://www.allyscandle.com/index/DEALERLOGON.html"; done=1; }
if (username=="craig" && password=="fenn") { window.location="http://www.allyscandle.com/index/INSEASONLANDSCAPING.html"; done=1; }
if (username=="0072phila" && password=="amy") { window.location="http://www.allyscandle.com/index/DEALERPERSONALPAGE-AMY2010.html"; done=1; }
if (username=="5686phila" && password=="laura") { window.location="http://www.allyscandle.com/index/DEALERPERSONALPAGE-LAURA2010.html"; done=1; }
if (done==0) { alert("SORRY Invalid login!"); }
}
//-->
