function validate_form1 ( )
{
	valid = true;

        if ( document.freecheck.name.value == "" )
        {
                alert ( "Please fill in the 'Name' box." );
                valid = false;
        }

        if ( document.freecheck.organisation.value == "" )
        {
                alert ( "Please fill in the 'Organisation' box." );
                valid = false;
        }
		
		 if ( document.freecheck.email.value == "" )
        {
                alert ( "Please fill in the 'Email' box." );
                valid = false;
        }
		if ( document.freecheck.training.value == "" )
        {
                alert ( "Please fill in the 'Have you undertaken formal media training previously? ' box." );
                valid = false;
        }
		 if ( document.freecheck.experience.value == "" )
        {
                alert ( "Please fill in the 'What sort of experience do those identified for training have dealing with journalists?' box." );
                valid = false;
        }
		 if ( document.freecheck.interview.value == "" )
        {
                alert ( "Please fill in the 'What do you consider you do or would do well when taking part in an interview with a journalist?' box." );
                valid = false;
        }
        return valid;
}

