function Validate(theForm)
{

  if (theForm.UserName.value == "" || theForm.UserName.value == " ")
  {
    alert("Please enter a value for the \"Name\" field.");
    theForm.UserName.focus();
    return false;
  }

  if (theForm.EMailAddress.value == "" || theForm.EMailAddress.value == " ")
  {
    alert("Please enter a value for the \"E-Mail\" field.");
    theForm.EMailAddress.focus();
    return false;
  }
	
  if (theForm.Comments.value == "" || theForm.Comments.value == " ")
  {
    alert("Please enter a Comment or Question.");
    theForm.Comments.focus();
    return false;
  }

  if (theForm.SecureId.value != theForm.Security.value)
  {
    alert("Please enter the correct Verification Code.");
    theForm.Security.focus();		
    return false;
  }

  return true;
  
 }
