/*=========================================*/
/*== Client Login - ==*/
/*=========================================*/
<!-- 
 function checkEnter(e){ //e is event object passed from function invocation
   var characterCode; // literal character code will be stored in this variable
   if(e && e.which){ //if which property of event object is supported (NN4)
      e = e;
      characterCode = e.which; //character code is contained in NN4's which property
   }
   else{
      e = event;
      characterCode = e.keyCode; //character code is contained in IE's keyCode property
   }

   if(characterCode == 13){ //if generated character code is equal to ascii 13 (if enter key)
      Login(); //submit the form
   return false; 
   }
   else{
      return true; 
   }

}
function Login(){
var done=0;
var pword=document.f_login.pword.value;
pword=pword.toLowerCase();

if (pword=="stcharles") { window.location="/gallery/7634001_QMn59"; done=1; }

if (pword=="athens1bday") { window.location="/gallery/7709658_ZeDRn"; done=1; }

if (pword=="natchez") { window.location="/gallery/7102493_cKgQo"; done=1; }

if (pword=="jkgordonwedding") { window.location="/gallery/7893940_rveCJ"; done=1; }

if (pword=="riversteamboat") { window.location="/gallery/8052753_c9zVZ"; done=1; }

if (pword=="kissmekate") { window.location="/gallery/8581560_MaacM"; done=1; }

if (pword=="mcgeheesweet16") { window.location="/gallery/9730647_zDP2o"; done=1; }

if (done==0) { alert("Password not accepted. Please try again."); }

}
// -->