function checkMsgForm()
{
	if (document.getElementById("company").value.length == 0)
	{
		window.alert("请输入您的公司！");
		document.getElementById("company").focus();
	}
	else if (document.getElementById("telephone").value.length == 0)
	{
		window.alert("请输入您的电话！");
		document.getElementById("telephone").focus();
	}
	else if (document.getElementById("body").value.length == 0)
	{
		window.alert("请输入留言内容！");
		document.getElementById("body").focus();
	}
	else
	{
		return true;
	}
	return false;
}