		function DoNav(Url)
		{
			document.location.href = Url;
		}
		function Disable(objectId, status)
		{
			document.getElementById(objectId).disabled = status;
		}
		function SetTitle(objectId, text)
		{
			document.getElementById(objectId).title = text;
		}
		function SetText(objectId, text)
		{
			document.getElementById(objectId).innerHTML = text;
		}
		function toggleDisplay (div1, div2) {
			if (div1.style.display!='block') {
				div1.style.display='block';
				div2.style.display='none';
			}
			
			else {
				div1.style.display='none';
				div2.style.display='block';
			}
			return true;
		}

