function doAcknowledge() {
  if (document.ProceedToComplaint.ackConf.checked == false)
  {
    alert("Please check the box indicating you have read and understood the \"Acknowledgment of Complaint Process\".\nOtherwise, you may submit a complaint via telephone at the number provided above the acknowledgment.");
    document.getElementById("AckConfID").style.border="4px double #cc0000";
    document.getElementById("AckConfID").style.color="#cc0000";
    document.getElementById("AckText").style.color="#cc0000";
    document.ProceedToComplaint.ackConf.focus();
    return false;
    //alert(fFld.Organization_Type[9].checked);
  }
  else
  {
    return true;
  }
}

function cancelComplaint() {
  location.href="complaint.do";
}
