<!--
function checkForm(TheForm) {
  // url, title, description
  if (TheForm.FormValue_CustomField36.value.length == 0) {
   TheForm.FormValue_CustomField36.value = prompt("You forgot to enter your first name! Please enter it in this field and click OK.");
   return false;
  }
  if (TheForm.FormValue_Email.value.length == 0) {
   TheForm.FormValue_Email.value = prompt("You forgot to enter your primary email address!  Please type in your primary email address in the field below and click OK.");
   return false;
  }
  return true;
}// end function checkalForm
// -->