function QuerySubmit(){
	var s = document.getElementById("comment").value;
	var patrn=/[\u4E00-\u9FA5]|[\uFE30-\uFFA0]/gi;
	if(!patrn.exec(s)){ 
		alert("为防止垃圾评论，留言中必须包含中文！多有不便，请谅解！");
		return false; 
	}else{ 
		return true; 
	} 
	}

