function contestSubmission()
{
  var theForm = document.forms[1];
  var errMsg = "";
  if (theForm.fName.value == "")
  {
    errMsg += "First Name missing\n";
  }
  if (theForm.lName.value == "")
  {
    errMsg += "Last Name missing\n";
  }
  if (theForm.residence1.value == "")
  {
    errMsg += "Residential Address missing\n";
  }
  if (theForm.residenceCity.value == "")
  {
    errMsg += "Residential City missing\n";
  }
  if (theForm.residenceState.selectedIndex == 0)
  {
    errMsg += "Residential State missing\n";
  }
  if (theForm.residenceZip.value == "")
  {
    errMsg += "Residential Zip Code missing\n";
  }
  if (theForm.email.value == "")
  {
    errMsg += "Email Address missing\n";
  }
  if (!theForm.question5.checked)
  {
    errMsg += "You must accept our terms and conditions to continue.\n";
  }
  if (errMsg == "")
  {
    theForm.action = "/MKE1/processEntry.asp";
    theForm.submit();
  }
  else
  {
    alert("The following errors were detected with your submission:\n\n" + errMsg + "\nPlease correct them and try again");
  }
}
