function validate(theform) {
for (var i = 0 ; i < theform.message.value.length ; i++) {
var code = theform.message.value.charCodeAt(i);
if (12549 <= code && code <= 12585){
alert("為他人著想請勿使用注音字!請重新輸入文章內容吧!");
return false;
}
}
for (var j = 0 ; j < theform.subject.value.length ; j++) {
var codej = theform.subject.value.charCodeAt(j);
if (12549 <= codej && codej <= 12585){
alert("為他人著想請勿使用注音字!請重新輸入文章標題吧!");
return false;
}
}