<script type="text/javascript" language="JavaScript">
<!--
function validate( theform ) {
  if ( theform.OtherDiscipline.value == "" ) {
      if ( ! ( theform.Discipline[0].checked || theform.Discipline[1].checked || 
           theform.Discipline[2].checked || theform.Discipline[3].checked ) ) {
         alert ( " Since you did not choose one of the specified disciplines, please enter a discipline under Other." ) ;
         theform.OtherDiscipline.focus() ;
         theform.OtherDiscipline.select() ;
         return false ;
      }
  }
  if ( theform.OtherInst.value == "" ) {
      if ( ! ( theform.Hospital[0].checked || theform.Hospital[1].checked || 
           theform.Hospital[2].checked || theform.Hospital[3].checked ) ) {
         alert ( " Since you did not choose one of the specified types of institutions, please enter the type of institution with which you are affiliated, under Other." ) ;
         theform.OtherInst.focus() ;
         theform.OtherInst.select() ;
         return false ;
      }
  }
}
// -->
</script>
