function formCheck(fmname) {
  if (fmname.HotMarCommCandText.value == ""){
    alert("Please enter the Hot MarComm Candidate default text.")
    fmname.HotMarCommCandText.focus();
    return false;
  }
  if (fmname.HotPrintingCandText.value == ""){
    alert("Please enter the Hot Printing Candidate default text.")
    fmname.HotPrintingCandText.focus();
    return false;
  }
  if (fmname.HotMarCommJobText.value == ""){
    alert("Please enter the Hot MarComm Job default text.")
    fmname.HotMarCommJobText.focus();
    return false;
  }
  if (fmname.HotPrintingJobText.value == ""){
    alert("Please enter the Hot Printing Job default text.")
    fmname.HotPrintingJobText.focus();
    return false;
  }
//now submit
  return true;
}



