function checkForm()
{
	var form = document.quoteForm;
	
	var RequiredInputs = new Array();
	RequiredInputs["Complex_Name"] = "Please enter the name of the complex";
	RequiredInputs["Units_In_Complex"] = "Please enter the total number of units in the complex";
	RequiredInputs["Num_Units_Residential"] = "Please enter the number of residential units in the complex";
	RequiredInputs["Num_Units_Commercial"] = "Please enter the number of commercial units in the complex";
	
	var RequiredRadios = new Array();
	RequiredRadios["Assesment"] = "Please choose an assesment";
	RequiredRadios["Uniform_Dues"] = "Please choose whether or not the complex has uniform dues";
	RequiredRadios["Special_Charges"] = "Please choose if there are special charges associated with the complex";
	RequiredRadios["Special_Assesment"] = "Please choose whether or not the complex has a special assessment";
	RequiredRadios["Billing_Method"] = "Please choose the complexes method of billing";
	RequiredRadios["Accounts_Payable_Service"] = "Please choose if there is an accounts payable service";
	RequiredRadios["Payroll_Service"] = "Please choose if there is a payroll service";
	RequiredRadios["Financial_Report_Frequency"] = "Please choos how frequently your financial report is released";
	RequiredRadios["Management"] = "Please choose the type of management offered at the complex";
	
	if(!CheckInputs(RequiredInputs, form))
		return false;

	if(!CheckRadios(RequiredRadios, form))
		return false;

	return true;
}
