function checkLoginSponsors()
{
  var memberNo, password, both
 
  memberNo = document.sponsorsLogin.txtMemberNo.value;
  password  = document.sponsorsLogin.txtPassword.value;
  both = memberNo+password;
 switch (both) {
 case "424242joint-venture": window.location = "../ONSIDE_sponsors/sponsors_home.html"; break;
 
 
 default: alert("You do not have the correct access code");
 }
}
