// ==========================================================
// This file contains JavaScript functions for performing 
// client-side form field validation
// ==========================================================


<!--Hide script from old browsers

function clientValidateLength(oSrc, args){
  var data = new String();
  var length = new Number();
  data = args.Value;
  length = data.length;
  args.IsValid = ((length > 7) && (length < 21));
}

function clientValidateQuestionLength(oSrc, args){
  var data = new String();
  var length = new Number();
  data = args.Value;
  length = data.length;
  args.IsValid = ((length > 9) && (length < 51));
}


// top hiding script from old browsers -->
