function checkcharactor(text){//จะเช็ค รหัสเก่า-ใหม่ ส่งมาตรงนี้
var iChars = "!@#$%^&*()+=[]\';,./{}|\":<>?~ "; //ตัวอักษรที่ห้ามมีใส่ตรงนี้
for (var i = 0; i < text.length; i++) {
if (iChars.indexOf(text.charAt(i)) != -1) {
//document.write("Containts special characters. \n These are not allowed.\n Please remove them and try again.");
return;
}
}
return true;
}