		function LoadCalendar(pName) {
			var pRef = document.getElementById(pName);
			pRef.style.visibility="visible";
			pRef.style.display = "";
			pRef.style.position = "absolute";
		}
		
		function HideCalendar(pName) {
			var pRef = document.getElementById(pName);
			pRef.style.visibility="hidden";
			pRef.style.display = "none";
			pRef.style.position = "absolute";
		}
		
		function SetCalData(pName,pValue) {
			var pObj = document.getElementById("txt" + pName);
			pObj.value = pValue;
			pObj = null;
			HideCalendar("frm" + pName);
		}

		function HiLiteBGOn(pObj) {
			pObj.bgColor = "#99ccff";
		}

		function HiLiteBGOff(pObj) {
			pObj.bgColor="";
		}

