// JavaScript Document
function checkp_m(o){
	o=o.elements;
	var err="";
	if(o["mName"].value=="")err+=' Please input your email address!\n';
	if(o["mComments"].value=="")err+=' Please input your comments!\n';
	if(err){
		alert('Because of the following reasons, the comments send failed£º\n\n'+err);
		return false;
	}
	return true;
}
