function ClientLogin()
{
  var osj = 'osj';
  var inp = prompt ('Please Enter Your Password to Access the Client Area', '');

  if (inp==osj)
  {
    window.location = "http://walshorgans.com/osj.htm";
  }else{
  	alert ("Wrong Password");
  }
}

