function validate(formObj) {

	warning = "";
	//if (formObj.OBJ.value == "") warning += "\n - LABEL";

	if (warning != "") {
        alert("Sorry, the form cannot be submitted because\nthe following required fields are incomplete:\n" + warning);
		return false;
	}
    formObj.submit();
}