<!--
function validate_form ( )
{
	valid = true;

		if ( document.contact_form.a_first_name.value == "" )
        {
                alert ( "Please fill in the 'First Name' box." );
                valid = false;
        }

		if ( document.contact_form.b_last_name.value == "" )
        {
                alert ( "Please fill in the 'Last Name' box." );
                valid = false;
        }

		if ( document.contact_form.c_email.value == "" )
        {
                alert ( "Please fill in the 'Email' box." );
                valid = false;
        }

		if ( document.contact_form.d_address.value == "" )
        {
                alert ( "Please fill in the 'Address' box." );
                valid = false;
        }

		if ( document.contact_form.e_city.value == "" )
        {
                alert ( "Please fill in the 'City' box." );
                valid = false;
        }

		if ( document.contact_form.f_state.value == "" )
        {
                alert ( "Please fill in the 'State' box." );
                valid = false;
        }

		if ( document.contact_form.g_zipcode.value == "" )
        {
                alert ( "Please fill in the 'Zipcode' box." );
                valid = false;
        }

		if ( document.contact_form.h_country.value == "" )
        {
                alert ( "Please fill in the 'Country' box." );
                valid = false;
        }

		if ( document.contact_form.i_gender.value == "" )
        {
                alert ( "Please choose a 'Gender'." );
                valid = false;
        }

		if ( document.contact_form.j_find.value == "" )
        {
                alert ( "Please choose 'How did you find us?'." );
                valid = false;
        }

        return valid;
}

//-->
