<!--
function Login(){
var done=0;
var username=document.login.username.value;
username=username.toLowerCase();
var secret=document.login.secret.value;
secret=secret.toLowerCase();
if (username=="cheryl" && secret=="rigley") { window.location="http://barhorstcreative.com"; done=1; }
if (username=="boncy" && secret=="jkeith") { window.location="http://www.artworksvideo.com/clients/2010/boncy.html"; done=1; }
if (username=="peterson" && secret=="jsimms") { window.location="http://www.artworksvideo.com/clients/2010/peterson.html"; done=1; }
if (username=="olson" && secret=="tdavis") { window.location="http://www.artworksvideo.com/clients/olson.html"; done=1; }
if (username=="carson" && secret=="mwoodhall") { window.location="http://www.artworksvideo.com/clients/2010/carson.html"; done=1; }
if (username=="kim" && secret=="swind") { window.location="http://www.artworksvideo.com/clients/2010/kim.html"; done=1; }
if (username=="edmunds" && secret=="lpeters") { window.location="http://www.artworksvideo.com/clients/2010/edmunds.html"; done=1; }
if (username=="reynolds" && secret=="scoleman") { window.location="http://www.artworksvideo.com/clients/2010/reynolds.html"; done=1; }
if (username=="chesnut" && secret=="mdesantis") { window.location="http://www.artworksvideo.com/clients/2010/chesnut.html"; done=1; }
if (username=="grant" && secret=="kgillen") { window.location="http://www.artworksvideo.com/clients/2011/grant.html"; done=1; }
if (username=="baughcum" && secret=="mbienacker") { window.location="http://www.artworksvideo.com/clients/2011/baughcum.html"; done=1; }
if (username=="nelson" && secret=="afranklin") { window.location="http://www.artworksvideo.com/clients/2011/nelson.html"; done=1; }
if (username=="franks" && secret=="tgordon") { window.location="http://www.artworksvideo.com/clients/2010/franks.html"; done=1; }
if (username=="moss" && secret=="sbmoss") { window.location="http://www.artworksvideo.com/clients/2011/moss.html"; done=1; }
if (username=="wells" && secret=="mramos") { window.location="http://www.artworksvideo.com/clients/2011/wells.html"; done=1; }
if (username=="bush" && secret=="sblack") { window.location="http://www.artworksvideo.com/clients/2011/bush.html"; done=1; }
if (username=="ruehlmann" && secret=="dmattingly") { window.location="http://www.artworksvideo.com/clients/2011/ruehlmann.html"; done=1; }
if (username=="wanandi" && secret=="amonzon") { window.location="http://www.artworksvideo.com/clients/2011/wanandi.html"; done=1; }
if (username=="marshall" && secret=="cjones") { window.location="http://www.artworksvideo.com/clients/2012/marshall.html"; done=1; }
if (username=="anderson" && secret=="skeith") { window.location="http://www.artworksvideo.com/clients/2011/anderson.html"; done=1; }
if (username=="onyema" && secret=="vberger") { window.location="http://www.artworksvideo.com/clients/2011/onyema.html"; done=1; }
if (username=="morehouse" && secret=="rstein") { window.location="http://www.artworksvideo.com/clients/2011/morehouse.html"; done=1; }
if (username=="member3" && password=="password3") { window.location="address3"; done=1; }
if (done==0) { alert("Incorrect Username or Password"); }
}
// -->

