// ÀÔ·Â ´©¶ô °Ë»ç
	function isEmpty(inputStr) {
		if (inputStr == null || inputStr == "") {
			return true
		}
		return false
	}