
<!--             	
	function EventTypeChanged()
    {                            
        var selectbox = document.getElementById("EventType");
        
        switch (selectbox.value) 
        {
            case 'Other':  ShowExtraDataRowWindTrainer();  break;

            default: HideExtraDataRowWindTrainer();  break;
        }
    }  
    
    function HideExtraDataRowWindTrainer()
    {                          
        var extradatarow = document.getElementById('extra_data_row_type');     
        extradatarow.style.display = 'none';
        document.getElementById('WindTrainerType').value = '';
    }
    
    function ShowExtraDataRowWindTrainer()
    {                         
        var extradatarow = document.getElementById('extra_data_row_type');  
        
         if(navigator.userAgent.indexOf("Firefox")!= -1)
         {                                
             extradatarow.style.display = 'inline';
         } 
         else 
         {                              
             extradatarow.style.display = 'inline';
         }
    }
	
	
	function HearAboutChanged()
    {                            
        var selectbox = document.getElementById("HearAboutUs");
        
        switch (selectbox.value) 
        {
            case 'Other':  ShowExtraDataRowHearAbout();  break;
			
			case 'Magazine':  ShowExtraDataRowHearAbout();  break;
			
			case 'Website':  ShowExtraDataRowHearAbout();  break;

            default: HideExtraDataRowHearAbout();  break;
        }
    }  
    
    function HideExtraDataRowHearAbout()
    {                          
        var extradatarow = document.getElementById('extra_data_row_hearabout');     
        extradatarow.style.display = 'none';
        document.getElementById('HearAbout_Other_BikeClub').value = '';
    }
    
    function ShowExtraDataRowHearAbout()
    {                         
        var extradatarow = document.getElementById('extra_data_row_hearabout');  
        
         if(navigator.userAgent.indexOf("Firefox")!= -1)
         {                                
             extradatarow.style.display = 'inline';
         } 
         else 
         {                              
             extradatarow.style.display = 'inline';
         }
    }
   
//-->  