function CheckAllCheckboxesInGroup(e) {
  // I DONT THINK THIS IS UESD BY ANYHTING!!
  //
  //
  //
  // Check all of the checkboxes in a group
  // Initialization
  var i, currElt, f;
  // Determine whether the "All" checkbox is now checked or unchecked
  //if (e.checked) {
  // Identify the form
   f = e.form;
    // Loop over all elements in the form
    for (i=0; i < f.elements.length; i++) {
      currElt = f.elements[i];	
      // If the element is one of the checkboxes in the group containing the checkbox which was just clicked...
      if (currElt.type == "checkbox")  {
       // Check the checkbox
        currElt.checked = true;
      }  // end if
    }  // end loop
  //}  // end if
  // alert("DONE WITH FUNCTION");  //debug coded not needed
}  // end of function CheckAllCheckboxesInGroup


function CheckAllIssueBoxes(e) {
  // Check all of the checkboxes that are issues
  // Initialization
  var i, currElt, f;
  //check the main checkbox
  e.checked=true;
  // Identify the form
  f = e.form;
    // Loop over all elements in the form
    for (i=0; i < f.elements.length; i++) {
      currElt = f.elements[i];	
      //alert(currElt.value.substring(0,5));
      if (currElt.type == "checkbox" && currElt.value.substring(0,5)==".BUL.")  {

       // Check the checkbox
        currElt.checked = true;
      }  // end if
    }  // end loop
    return false;
}  // end of function CheckAllCheckboxesInGroup
