function validateForm() {
	var valid = DDM.Validation;

	var baseClientID = 'mainMaster_cphMain_'
	var formElements = new Array();
	formElements.push(new valid.formElementsToValidate('rbHelpfulness', "You must select an answer for Helpfulness"));
	formElements.push(new valid.formElementsToValidate('rbPromptness', "You must select an answer for Promptness"));
	formElements.push(new valid.formElementsToValidate('rbAppearance', "You must select an answer for Professional Appearence"));
	formElements.push(new valid.formElementsToValidate('rbPerformance', "You must select an answer for Service Perfomance"));
	formElements.push(new valid.formElementsToValidate('rbConfidence', "You must select an answer for Confindence"));
	formElements.push(new valid.formElementsToValidate(baseClientID + 'txtRepairDate', "You must enter a approximate repair date"));

	var msg = valid.submitValidation(formElements);

	if (msg != "") {
		alert(msg);
		valid.setFocusFirstField();
		return false;
	} else {
		return true;
	}
}

/*
function resetRadioColors(oElement) {
	oRadio = document.getElementsByName(oElement.name);
	for (var i = 0; i < oRadio.length; i++) {
		var e = oRadio[i];
		resetColor(e);
	}
}
*/

