// form fields description structure
var a_fields = {
	'first_name':{'l':'First Name','r':true,'f':'alpha','t':'first_name'},
	'last_name':{'l':'Last Name','r':true,'f':'alpha','t':'last_name'},
	'company':{'l':'Company','r': true,'t':'company'},
	'title':{'l':'Title','r': true,'t':'title'},
	'email':{'l':'E-mail','r':true,'f':'email','t':'email'},
	'telephone1':{'l':'Telephone','r':true,'mx':4,'t':'telephone'},
	'telephone2':{'l':'Telephone','r':true,'mx':4,'t':'telephone'},
	'telephone3':{'l':'Telephone','r':true,'mx':9,'t':'telephone'}
	   	
},

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

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