// JavaScript Document
    function checkValue()
	{
	    if (document.form_note.namelx.value=="") 
		{
		    alert("请输入联系人姓名!");
			return false;
		}
		if (document.form_note.tel.value=="") 
		{
		    alert("请输入联系电话!");
			return false;
		}
		
	     if (document.form_note.address.value=="") 
		{
		    alert("请输入联系地址！");
			return false;
		}
		document.form_note.submit();
	}
