<!--
function CK(a){
	var a;
if(a.name.value.length<2 || a.message.value.length<10 || a.topic.value.length<5){
alert('กรุณากรอกข้อมูลให้ครบถ้วน และเป็นจริง !!');
return false;
}else if(a.mail.value !=""){
	if(a.mail.value.indexOf('.')<5 || a.mail.value.indexOf('@')<3){
		alert('กรุณากรอก E-mail ที่เป็นจริง !!');
		return false;
	}else{
	return true;
	}
}else{
return true;
}
}

function CkRe(a){
	var a;
if(a.name.value.length<2 || a.message.value.length<10){
alert('กรุณากรอกข้อมูลให้ครบถ้วน และเป็นจริง !!');
return false;
}else if(a.mail.value !=""){
	if(a.mail.value.indexOf('.')<5 || a.mail.value.indexOf('@')<3){
		alert('กรุณากรอก E-mail ที่เป็นจริง !!');
		return false;
	}else{
	return true;
	}
}else{
return true;
}
}

function Smiley(a){
var a;
document.form1.message.value = document.form1.message.value+" "+a;
	document.form1.message.focus();
}

function DEL(){
if(confirm('คุณกำลังจะลบข้อมูลนี้ !')){
return true;
}else{
return false;
}
}
-->