Validation.add('validate-contrasena', 'Please enter 4 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 < 4);
});
