		function checkForm()
		{
			alert('Search facility is not currently available');
			return false;
		}

		var iLastMenu = null;
		
		function hideMenu()
		{
			if(null!=iLastMenu)
			{
				if(null==iLastMenu.icAlwaysOn)
				{
					iLastMenu.style.display = 'none';
				}
				iLastMenu = null;
			}
		}
		
		function icRollover(nMenu)
		{
			hideMenu();
			
			var iImage=document.getElementById("icMenuImage" + nMenu)
			if(null!=iImage)
			{
				iLastMenu = iImage;
				iLastMenu.style.display = '';
			}	
		}


	function loadOnlineCalcTool()
	{
		if(null==document.layers)
		{
			var dialogargs = "dialogHeight: 402px; dialogWidth: 680px; center: Yes; help: No; resizable: No; status: No;";
			window.showModalDialog("onlineCalc.htm",window,dialogargs);
		}
		else
		{
			var dialogWindow = window.open("PileTestingResults.asp","dlog","height=520,width=520,modal=yes");
		}
	}
