// contact form

var o_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
	},
	'name':{'l':'Name','r':true,'t':'name'},
	'email':{'l':'E-mail','r':true,'f':'email','t':'email'}
}
var tfv = new validator('messagebox', o_fields, {'alert' : 1});
