function submitIt(checkIt)
{
	var ItemsArray = new Array(
		new Array(false, 'C', '*',	checkIt.sendfax1,				"Send Fax #1"),
		new Array(false, 'C', '*',	checkIt.sendfax2,				"Send Fax #2"),
		new Array(true, 'T', '*',	checkIt.firstname,				"First Name"),
		new Array(true, 'T', '*',	checkIt.lastname,				"Last Name"),
		new Array(true, 'T', '*',	checkIt.address,				"Address"),
		new Array(true, 'T', '*',	checkIt.city,					"City"),
		new Array(true, 'S', 0,		checkIt.state,					"State"),
		new Array(true, 'T', 'Z',	checkIt.zip,					"Zip Code"),
		new Array(true, 'T', 'E',	checkIt.emailaddress,			"Email Address")
	);

	//erase mail sting
	checkIt.mailstring.value = ""

	for (var i = 0; i < ItemsArray.length; ++i) {
		if (!CheckItem(ItemsArray[i], checkIt.mailstring))
			return false;
	}

	return true
}
