
/* Change to password validation length */
Validation.addAllThese([
['validate-password', 'Please enter 8 or more characters. Leading or trailing spaces will be ignored.', function(v) {
    var pass=v.strip(); /*strip leading and trailing spaces*/
    return !(pass.length>0 && pass.length < 8);
}]
]);

