function submit_onclick(theForm) {
	if (theForm.Company_Name.value=="") {
		alert("请输入公司全名 ！");
		theForm.Company_Name.focus();
		return (false);
	}
	if (theForm.Abbreviation.value=="") {
		alert("请输入公司简称 ！");
		theForm.Abbreviation.focus();
		return (false);
	}
}