
<!--
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=="member3" && password=="password3") { window.location="address3"; done=1; }
if (done==0) { alert("Incorrect Username or Password"); }
}
// -->
