// $Revision: 10543 $ $Date: 2010-09-23 11:18:57 -0500 (Thu, 23 Sep 2010) $ $Author: andrew $
// $Author Prelude Dynamics, LLC
// $Header$
//
// Javascript to clear the checked condition of the provided object.  The call to this script
// is included automatically in the tag processing "BaseHandlerTag" for radio and checkbox elements.
//
// @author Perceptive Connection, LLC
// @version $Revision: 10543 $ $Date: 2010-09-23 11:18:57 -0500 (Thu, 23 Sep 2010) $
//
    function clearRadioOrCheckbox(anElement) {
      anElement.checked = false;
      return(true);
    } // end function

