/*
 * Mark all of the mandatory fields and then validate the form and either present
 * an error message dialog, explaining the offending widgets and then allow the
 * user to correct the mistakes, or begin processing of the form data.
 */

function ValidateBulkyItemCollectionForm(formObject)
{
	var formVal = new ValidateForm(formObject);

	// Set the mandatory fields

	formVal.setTextMandatory("email");
	formVal.setTextMandatory("address");
	formVal.setTextMandatory("describeItem");
	formVal.setTextMandatory("curbOrAlley");
	formVal.setTextMandatory("weekdayColl");

	// Return the validation state to the callback.
	return (formVal.validateForm());
}