function fillinattendee()
{
   if (this.RegForm.AA.checked==true)
   {
      // fill in applicant
      this.RegForm.txtHNRFirstName.value=this.RegForm.txtRegistrantFirstName.value;
      this.RegForm.txtHNRLastName.value=this.RegForm.txtRegistrantLastName.value;
      this.RegForm.txtWPhone.value=this.RegForm.txtRegistrantWPhone.value;
   } else {
      // Wipe out errouneous 
      if (this.RegForm.txtHNRFirstName.value==this.RegForm.txtRegistrantFirstName.value) { 
         this.RegForm.txtHNRFirstName.value=""; 
      }
      if (this.RegForm.txtHNRLastName.value==this.RegForm.txtRegistrantLastName.value) { 
         this.RegForm.txtHNRLastName.value=""; 
      }
      if (this.RegForm.txtWPhone.value==this.RegForm.txtRegistrantWPhone.value) { 
         this.RegForm.txtWPhone.value=""; 
      }
   }      
}

