var fields = [
	new Field("txtName", "req,maxlen=100", "Your Name"),
	new Field("txtCompanyName", "maxlen=100", "Your Company"),
	new Field("txtAddress1", "maxlen=100", "Address"),
	new Field("txtAddress2", "maxlen=100", "Address (Line 2)"),
	new Field("txtCity", "req,maxlen=50", "City"),
	new Field("txtState", "req,maxlen=50", "State"),
	new Field("txtZip", "req,maxlen=10", "Zip"),
	new Field("txtPhone", "maxlen=30", "Phone #"),
	new Field("txtFax", "maxlen=30", "Fax #"),
	new Field("txtEmail", "req,email,maxlen=100", "E-mail"),
	new Field("txtComments", "req,maxlen=600", "Comments")
];