var checkOk=new Array();checkOk[0]="12288";checkOk[1]="8364";function isOkChar(ch){for(var j=0;j<checkOk.length;j++)
if(ch==checkOk[j]){return true;}
return false;}
function checkchi(myint){var checkStr=myint;var allValid=true;for(var i=0;i<checkStr.length;i++){var ch=checkStr.charCodeAt(i);if(ch>256&&!isOkChar(ch)){var allValid=false;break;}}
if(!allValid){return(false);}
return(true);}
function checkMsg(input_value,outData){if(!(checkchi(input_value))){alert(outData);return false;}
return true;}
