var formInfo = new Array();

// phone: phone;Pretty Field Name;isrequired?
// email: email;Pretty Field Name;isrequired?
// date: date;Pretty Field Name;isrequired?
// timestamp: date;Pretty Field Name;isrequired?
// required: required;Prety Field Name;minlen;maxlen
// number: number;Pretty Field Name;isrequired?;minlen;maxlen;minvalue;maxvalue
// currency: currency;Pretty Field Name;isrequired?;minvalue;maxvalue
// none: none

formInfo["member_id"]  = "number;Member ID;true;6;6";
formInfo["merchant_name"]  = "required;Merchant Name";
formInfo["merchant_phone"] = "phone;Merchant Phone;false";
formInfo["date_opened"]  = "date;Date Opened";
formInfo["return_merchant_sales"]  = "currency;Previous Years Sales";
formInfo["first_name"]  = "required;First Name";
formInfo["last_name"]  = "required;Last Name";
formInfo["home_phone"]  = "phone;Home Phone;false";
formInfo["work_phone"]  = "phone;Work Phone;false";
formInfo["cell_phone"]  = "phone;Cell Phone;false";
formInfo["date_of_birth"]  = "date;Date of Birth;true";
formInfo["fax"]  = "phone;Fax;false";
formInfo["work_extension"]  = "number;Work Extension";
formInfo["email"]  = "email;Email;false";
formInfo["emailSubject"] = "required;Email Subject;true";
formInfo["report_title"] = "required;Report Title";
formInfo["report_template_id"] = "required;Report Layout";
formInfo["report_category_lookup"] = "required;Report Category";
formInfo["field_id"] = "required;Column";
formInfo["width"] = "number;Width;true";
formInfo["allow_expand"] = "required;Allow Vertical Expansion";
formInfo["body_font_size"] = "required;Body Font Size";
formInfo["title_font_size"] = "required;Title Font Size";
formInfo["mailing_list_name"] = "required;Mailing List Name";
formInfo["password"] = "newpassword;Password;true";
formInfo["verify_password"] = "extrapassword;Verify Password;true";

$(document).ready(function(){
	//$('.column').css('height',$('.col_wrapper').height()+'px');
});

$(window).load(function(){
	$('.column').css('height',$('.col_wrapper').height()+'px');
});
