function validate_form1 ( )
{
	valid = true;

        if ( document.contact_form.name.value == "" )
        {
                alert ( "Please fill in the 'Name' box." );
                valid = false;
        }

        if ( document.contact_form.email.value == "" )
        {
                alert ( "Please fill in the 'Email' box." );
                valid = false;
        }
		
		 if ( document.contact_form.phone.value == "" )
        {
                alert ( "Please fill in the 'Phone Number' box." );
                valid = false;
        }
		
	    if ( document.contact_form.club.value == "" )
        {
                alert ( "Please fill in the 'Club Name' box." );
                valid = false;
        }
		
     
        if ( document.contact_form.clubemail.value == "" )
        {
                alert ( "Please fill in the 'Club Email' box." );
                valid = false;
        }
		
		if ( document.contact_form.clubphone.value == "" )
        {
                alert ( "Please fill in the 'Club Phone' box." );
                valid = false;
        }
		
		if ( document.contact_form.members.value == "" )
        {
                alert ( "Please fill in the 'How Many Members' box." );
                valid = false;
        }
		
		if ( document.contact_form.interests.value == "" )
        {
                alert ( "Please fill in the 'Club Interests' box." );
                valid = false;
        }
		
        return valid;
}

