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=="diet" && password=="power") { window.location="http://www.jessyswebsolutions.com/dietpower/current.shtml"; done=1; }
if (username=="hi" && password=="link") { window.location="http://www.jessyswebsolutions.com/hi-link/current.shtml"; done=1; }
if (username=="left" && password=="right") { window.location="http://www.jessyswebsolutions.com/leftright/current.shtml"; done=1; }
if (username=="synergy" && password=="six") { window.location="http://www.jessyswebsolutions.com/Synergy6/current.shtml"; done=1; }
if (username=="blueice" && password=="media") { window.location="http://www.jessyswebsolutions.com/blueice/current.shtml"; done=1; }
if (username=="24/7" && password=="support") { window.location="http://www.jessyswebsolutions.com/247/current.shtml"; done=1; }
if (username=="vesper" && password=="media") { window.location="http://www.jessyswebsolutions.com/vesperexchange/current.shtml";done=1; }
if (username=="wadia" && password=="associates") { window.location="http://www.jessyswebsolutions.com/wadia/current.shtml";done=1; }
if (username=="media" && password=="dogz") { window.location="http://www.jessyswebsolutions.com/dogz/current.shtml";done=1; }
if (username=="sport" && password=="betusa") { window.location="http://www.jessyswebsolutions.com/sport/current.shtml";done=1; }
if (username=="baruch" && password=="cdc") { window.location="http://www.jessyswebsolutions.com/baruch/current.shtml";done=1; }
if (username=="tonis" && password=="treats") { window.location="http://www.jessyswebsolutions.com/toni/current.shtml";done=1; }

if (username=="arloyalty" && password=="films") { window.location="http://www.jessysworld.com/clients/ARL2005.shtml";done=1; }

if (done==0) {  window.location="http://www.jessysworld.com/login-failed.shtml"; }
}