// 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
	},*/
	'valor_min':{'l':'valor mínimo','r':true,'f':'real2'},
	'valor_max':{'l':'valor máximo','r':true,'f':'real2'}

},

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

// validator constructor call
var v2 = new validator('busca', a_fields, o_config);