		function promptError(targetObj, errorMsg)
		{
			alert(errorMsg);
			targetObj.focus();
			return false;
		}

		function notNull(testValue)
		{
			return (testValue != '')
		}

		function isPosNum(testValue)
		{
			len = testValue.length;
			if (len == 0)
				return false;
			for (i=0; i<len; i++)
				if (testValue.charAt(i) < '0' || testValue.charAt(i) > '9')
					return false;
			if (parseInt(testValue) == 0)
				return false;
			return true;
		}
