// JavaScript Document
function validate_form ( )
{
	valid = true;

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

        
                if ( document.form2.family.value == "" )
        {
                alert ( "Please fill in the 'Last Name' box." );
                valid = false;
        }
		
		        if ( document.form2.email.value == "" )
        {
                alert ( "Please fill in the 'Email' box." );
                valid = false;
        }
		        
				
                if ( document.form2.phone.value == "" )
        {
                alert ( "Please fill in the 'Phone' box." );
                valid = false;
        }
		
		        if ( document.form2.dep.value == "" )
        {
                alert ( "Please fill in the 'Depart From' box." );
                valid = false;
        }
		
		        if ( document.form2.arr.value == "" )
        {
                alert ( "Please fill in the 'Arrive At' box." );
                valid = false;
        }

		        if ( document.form2.date1.value == "" )
        {
                alert ( "Please fill in the 'Depart date' box." );
                valid = false;
        }

		        if ( document.form2.date2.value == "" )
        {
                alert ( "Please fill in the 'Return date' box." );
                valid = false;
        }


        return valid;
}
