<!--

function validate_form ( )
{
    valid = true;

    if ( document.Car_Donation.date.value == "" )
    {
        alert ( "Please supply today's date in the required field." );
        valid = false;
    }
    if ( document.Car_Donation.donor_name.value == "" )
    {
        alert ( "Please supply the donor's name in the required field." );
        valid = false;
    }
    if ( document.Car_Donation.address.value == "" )
    {
        alert ( "Please supply the car's location address in the required field." );
        valid = false;
    }
    if ( document.Car_Donation.city.value == "" )
    {
        alert ( "Please supply the city the vehicle is located in." );
        valid = false;
    }
    if ( document.Car_Donation.state.value == "" )
    {
        alert ( "Please supply the state the vehicle is located in." );
        valid = false;
    }
    if ( document.Car_Donation.zip.value == "" )
    {
        alert ( "Please supply the zip code the vehicle is located in." );
        valid = false;
    }
    if ( document.Car_Donation.phone.value == "" )
    {
        alert ( "Please supply your phone number in the required field." );
        valid = false;
    }
    if ( document.Car_Donation.year.value == "" )
    {
        alert ( "Please supply the vehicle's year, make, and model." );
        valid = false;
    }
    if ( document.Car_Donation.make.value == "" )
    {
        alert ( "Please supply the vehicle's year, make, and model.." );
        valid = false;
    }
    if ( document.Car_Donation.model.value == "" )
    {
        alert ( "Please supply the vehicle's year, make, and model.." );
        valid = false;
    }
    if ( document.Car_Donation.license.value == "" )
    {
        alert ( "Please supply your license number in the required field." );
        valid = false;
    }
    if ( document.Car_Donation.vin.value == "" )
    {
        alert ( "Please supply the vehicle's vin number in the required field." );
        valid = false;
    }
    if (( document.Car_Donation.RadioGroup1[0].checked == false ) && ( document.Car_Donation.RadioGroup1[1].checked == false ) && ( document.Car_Donation.RadioGroup1[2].checked == false ) && ( document.Car_Donation.RadioGroup1[3].checked == false ))
    {
        alert ( "Please indicate one of the following: 2 Door, 4 Door, Station Wagon, or 4 Wheel Drive." );
        valid = false;
    }
    if (( document.Car_Donation.title_yn[0].checked == false ) && ( document.Car_Donation.title_yn[1].checked == false ))
    {
        alert ( "We need to know if you have the title to this vehicle." );
        valid = false;
    }
    if (( document.Car_Donation.explain2.value == "" ) && ( document.Car_Donation.title_yn[1].checked == true ))
    {
        alert ( "We need an explanation of the missing title, please supply that information." );
        valid = false;
    }
    if (( document.Car_Donation.runs_yn[0].checked == false ) && ( document.Car_Donation.runs_yn[1].checked == false ))
    {
        alert ( "We need to know if the vehicle runs as is." );
        valid = false;
    }
    if (( document.Car_Donation.explain.value == "" ) && ( document.Car_Donation.runs_yn[1].checked == true ))
    {
        alert ( "Please explain why the vehicle does not run." );
        valid = false;
    }


    return valid;
}

//-->