// Global user functions
// Checks that the # typed conforms to six characters
// Remember to insert text for error message in the ew_ValidateForm function

function checkCC(Object_Value){
var cc_length;
alert("Please enter the last six digits of your membership number");

cc_length=Object_Value.length;
if ( cc_length == 6){
return true;
}
else{

return false;
}
}


