Validation.add('validate-custom-min-3', 'This input needs to be at least 3 characters in length.', {
     //pattern : new RegExp("^[a-zA-Z]+$","gi"), // only letter allowed
     minLength : 3 // value must be at least 6 characters
     //maxLength : 13, // value must be no longer than 13 characters
     //min : 5, // value is not less than this number
     //max : 100, // value is not more than this number
     //notOneOf : ['password', 'PASSWORD'], // value does not equal anything in this array
     //oneOf : ['fish','chicken','beef'], // value must equal one of the values in this array
     //is :  '5', // value is equal to this string
     //isNot : 'turnip', //value is not equal to this string
     //equalToField : 'password', // value is equal to the form element with this ID
     //notEqualToField : 'username', // value is not equal to the form element with this ID
     //include : ['validate-alphanum'] // also tests each validator included in this array of validator keys (there are no sanity checks so beware infinite loops!)
});