function sell_car_submit(){
	var themessage = "There was an error in your submission:\n ";
	if (Sell_Car_Form.Applicant_First_Name.value.length == 0){
		themessage = themessage + "\n- Please tell us your First Name.";
	}
	if (Sell_Car_Form.Applicant_Last_Name.value.length == 0){
		themessage = themessage + "\n- Please tell us your Last Name.";
	}
	if (echeck(Sell_Car_Form.Applicant_Email.value)==false){
		themessage = themessage + "\n- Please enter a valid E-mail Address";
	}
	if (Sell_Car_Form.Applicant_DayPhone_1.value.length != 3 || Sell_Car_Form.Applicant_DayPhone_2.value.length != 3 || Sell_Car_Form.Applicant_DayPhone_3.value.length != 4) {
		themessage = themessage + "\n- Please enter a valid Daytime Phone Number.";
	}	
	if (Sell_Car_Form.Vehicle_Year.value.length != 4) {
		themessage = themessage + "\n- Please enter a valid Vehicle Year.";
	}	
	if (Sell_Car_Form.Vehicle_Make.value.length == 0){
		themessage = themessage + "\n- Please tell us your Vehicle's Make.";
	}
	if (Sell_Car_Form.Vehicle_Model.value.length == 0){
		themessage = themessage + "\n- Please tell us your Vehicle's Model.";
	}
	if (Sell_Car_Form.Vehicle_Trim.value.length == 0){
		themessage = themessage + "\n- Please tell us your Vehicle's Trim - if you do not know your Vehicle's Trim, simply put N/A.";
	}
	if (Sell_Car_Form.Vehicle_Color.value.length == 0){
		themessage = themessage + "\n- Please tell us your Vehicle's Color.";
	}
	if (Sell_Car_Form.Vehicle_Mileage.value.length == 0){
		themessage = themessage + "\n- Please tell us your Vehicle's Mileage.";
	}
	if (Sell_Car_Form.Vehicle_Vin.value.length == 0){
		themessage = themessage + "\n- Please tell us your Vehicle's Vin - if you do not know your Vehicle's Vin, simply put N/A.";
	}
	if (Sell_Car_Form.Vehicle_Transmission.value == -1){
		themessage = themessage + "\n- Please select your Vehicle's Transmission type.";
	}
	if (Sell_Car_Form.Vehicle_Purchased.value == -1){
		themessage = themessage + "\n- Please select how your Vehicle was Originally Purchased.";
	}
	if (Sell_Car_Form.Vehicle_Serviced.value == -1){
		themessage = themessage + "\n- Please select if this Vehicle has ever been serviced by our facilty.";
	}
	if (Sell_Car_Form.Vehicle_Accidents.value == -1){
		themessage = themessage + "\n- Please select if this Vehicle has ever been in an accident or had paintwork done.";
	}
	if (Sell_Car_Form.Vehicle_Payoff.value.length == 0){
		themessage = themessage + "\n- Please tell us your Payoff Amount - if you do not owe any money on this vehicle, simply put 0.";
	}
	if (Sell_Car_Form.Vehicle_Title.value == -1){
		themessage = themessage + "\n- Please select your vehicle's Title Status.";
	}
	if (Sell_Car_Form.Sell_Dealercode.value == -1){
		themessage = themessage + "\n- Please select the dealership you would like to sell your car to.";
	}
	if (themessage == "There was an error in your submission:\n ") {
		Sell_Car_Form.submit();
	}
	else {
		alert(themessage);
   		}
}