function validate_form( )
{
	valid = true;
	

        if ( document.freereport.name.value == "" )
        {
                alert ( "Please fill in the 'Your name' box." );
				
                valid = false;
        }
		
		 if ( document.freereport.email.value == "" )
        {
                alert ( "Please fill in the 'Your email' box." );
				
                valid = false;
        }
		
		if ( document.freereport.postcode.value == "" )
        {
                alert ( "Please fill in the 'Your postcode' box." );
				
                valid = false;
        }

        return valid;
}

