function IsValid(){
   try{
      var el=document.forms['form1'].elements;
      if(el['committeeList'].selectedIndex==-1){
         alert('You must select at least one committee from the list.');
         return false;
      }
      if(el['haveEmail'][0].checked&&el['email'].value==''){
         alert('You must indicate your email address in the space provided.');
         return false;
      }
      if(el['applicantName'].value==''){
         alert('You must indicate your name.');
         return false;
      }
      if(el['contactInformation'].value==''){
         alert('You must indicate your contact information so that we may contact you.');
         return false;
      }
      return confirm('The information is ready to be sent.\n\nClick OK to send or Cancel to make changes.');
   }catch(e){
      return false;
   }
}