// form fields description structure
var a_fields = {
//	'title': {
//		'l': 'Title',  // label
//		'r': false,    // required
//		'f': 'alpha',  // format (see below)
//		't': 't_title',// id of the element to highlight if input not validated
		
//		'm': null,     // must match specified form field
//		'mn': 2,       // minimum length
//		'mx': 10       // maximum length
//	},
	'Email':{'l':'E-mail','r':true,'f':'email','t':'t_email'},
	'FirstName':{'l':'First Name','r':true,'f':'alpha','t':'t_first_name'},
	'Birthday':{'l':'Birthday','r':true,'t':'t_birthday'},
	'CellPhone':{'l':'Cell Phone','f':'phone','t':'t_cellphone'},
},

o_config = {
	'to_disable' : ['Submit', 'Reset'],
	'alert' : 1
}

// validator constructor call
var v = new validator('mailinglist', a_fields, o_config);