FancyForm.vtype({
type: 'email',
re: /^(")?(?:[^\."])(?:(?:[\.])?(?:[\w\-!#$%&'*+\/=?\^_`{|}~]))*\1@(\w[\-\w]*\.){1,5}([A-Za-z]){2,6}$/,
blankText: 'required',
text: 'Incorect email'
});
FancyForm.vtype({
type: 'age',
fn: function(value){
return value>20 && value<80;
},
text: 'Age should be more 20 and less 80'
});