// 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;
cc_length=Object_Value.length;
if ( cc_length == 6){
return true;
}
else{
return false;
}
}

