<!-- Begin
function checkPw(form) {
/* note:  these values are now in java servlet CSMailForm
  -- if you change the values here, you MUST change them there:
     ~defender/lek/CSMailForm1.1/src/*java  */
var pw1 = "2672";
var pw3 = "5415";
var pw4 = "6973";
var pw5 = "1959";
var pw2 = form.pw2.value;
if ((pw1 != pw2) && (pw3 != pw2) && (pw4 != pw2) && (pw5 != pw2)) {
alert ("\n Please enter a valid Code Number.")
return false;
}
else return true;
}
function selectPicBasic() {
  // generate a random number between 1 and 4
  var randomNum = Math.floor(Math.random() * 4)+1;
  // build the filename string including the random num
  var filename = "/images/layout/bam_code/bam_code" + randomNum + ".gif";
  // set the src of the image equal to the filename
  document.getElementById("pic").src = filename;
}
// End -->
