function validate_form1 ( )
{
	valid = true;

        if ( document.findmore.name.value == "" )
        {
                alert ( "Please fill in the 'Name' box." );
                valid = false;
        }

        if ( document.findmore.organisation.value == "" )
        {
                alert ( "Please fill in the 'Organisation' box." );
                valid = false;
        }
		
		 if ( document.findmore.email.value == "" )
        {
                alert ( "Please fill in the 'Email' box." );
                valid = false;
        }
		if ( document.findmore.trigger.value == "" )
        {
                alert ( "Please fill in the 'What is the trigger for enquiring about this training?' box." );
                valid = false;
        }
		 if ( document.findmore.people.value == "" )
        {
                alert ( "Please fill in the 'How many people have been identified for training?' box." );
                valid = false;
        }
		 if ( document.findmore.experience.value == "" )
        {
                alert ( "Please fill in the 'What sort of experience do those identified for training have dealing with journalists?' box." );
                valid = false;
        }
        return valid;
}


