function defineFields()
{
	// redefine the field colors
	bgColorNorm = "#FFFFFF";
	bgColorError = "#CC3300";
	fgColorNorm = "#000000";
	fgColorError = "#FFFFFF";
	bgCountColor = "#666666";
	fgCountColor = "#FFFFFF";
	
	// define the objects for validation
	
	// first form

    if (!document.forms.frmContact) return;
	if (location.href.indexOf("delete") != -1)
		valForms[0] = new CheckForm("frmContact", "btnDelete");
	else
		valForms[0] = new CheckForm("frmContact", "btnSubmit"); 

    valForms[0].addDynField("Comments", "CommentsLength", 800, "Comments/Questions");
	valForms[0].addField("Email", "req, email", "Email Address");
	valForms[0].addField("Name", "req", "Name");
	valForms[0].addField("Business", "req", "Business Name");
	valForms[0].addField("Address", "req", "Business Address");
	valForms[0].addField("City", "req", "City");
	valForms[0].addField("State", "req", "State");
	valForms[0].addField("ZipCode", "req, numeric", "Postal Code");
	valForms[0].addField("DayPhone", "numeric", "Daytime Phone Number");
	valForms[0].addField("DayFax", "numeric", "Daytime Fax Number");
	valForms[0].addField("Comments", "req", "Comments/Questions");

}

