var valfields = new Array();
var cnt = 0;

valfields[cnt++] = new valobj("context", "I need help with...", "radio", radio_isBlank, null);
valfields[cnt++] = new valobj("fname", "First Name", "text", isBlank, isText);
valfields[cnt++] = new valobj("lname", "Last Name", "text", isBlank, isText);
valfields[cnt++] = new valobj("whoareyou", "Login Username", "text", isBlank, isText);
valfields[cnt++] = new valobj("email", "Email", "text", isBlank, isValidEmail);
valfields[cnt++] = new valobj("phone", "Phone", "text", null, isText);
valfields[cnt++] = new valobj("company", "Organization", "text", null, isText);
valfields[cnt++] = new valobj("title", "Title/Position", "text", null, isText);
valfields[cnt++] = new valobj("city", "City", "text", null, isText);
valfields[cnt++] = new valobj("statecode", "State", "text", null, isUSState);
//valfields[cnt++] = new valobj("zip", "Zip", "text", null, isValidZIPCode);
//valfields[cnt++] = new valobj("fax", "Fax", "text", null, isPhoneNum);
valfields[cnt++] = new valobj("comments", "Problem", "text", isBlank, isText);


/*	Local validation to be done after initial single-field validation. This
	function should be written for pages where one of two fields must be 
	filled, say, or if one field is filled others should be checked. */
function local_validateForm(form)
{
	var	isValid = true;
	

	return true;
}

