// JavaScript Document
function checkform(){
	var f=document.ment;
	if(f.ComMentCentent.value==""){
	alert("请填写评论内容！");
	return false;
	}
	if(f.ComMentCentent.value.length >300){
	alert("评论内容不能超过300字！");
	return false;
	}if(f.ComMentCentent.value.length <10){
	alert("评论内容不能少于10字！");
	return false;
	}
	
	if(f.postcode.value==""){
	alert("请填写验证码！");
	return false;
	}
	
}
