// JavaScript Document
function CheckForm(theForm){
	if (theForm.CompanyName.value == ''){
		alert("请填写公司名称！")
		theForm.CompanyName.focus();
		return false;
		}
	if (theForm.LinkMan.value == ''){
		alert("请填写联系人姓名！")
		theForm.LinkMan.focus();
		return false;
		}
	if (theForm.Tel.value == ''){
		alert("请填写联系电话！")
		theForm.Tel.focus();
		return false;
		}
	if (theForm.Fax.value == ''){
		alert("请填写传真号码！")
		theForm.Fax.focus();
		return false;
		}
	if (theForm.Address.value == ''){
		alert("请填写公司地址！")
		theForm.Address.focus();
		return false;
		}
}