<!-- hide from old browsers
function FocusOnTextBox()
	{
	document.forms.Searchform.EditSearch.focus();
	document.forms.Searchform.EditSearch.select();
	}
function onClickButtSearch()
{
	if ( document.forms.Searchform.EditSearch.value == "" )
	{
		alert("Please enter one or more search terms in the search box.");
		document.forms.Searchform.action = "Search.asp";
	}
	else
	{
		document.forms.Searchform.action = "search.asp";
	}
}
function HyperLinkFunc(type, filename)
{
	if ( document.forms.Searchform.EditSearch.value == "" )
	{
		alert("Please enter one or more search terms in the search box.");
		document.forms.Searchform.action = "Search.asp";
	}
	else
	{
		document.forms.Searchform.action = "search.asp";
	}
}
function checkKeyPress()
{
	//Only numeric values are allowed
	var code;
	code = window.event.keyCode;
	if (window.event.keyCode == 13)
	{
		if ( document.forms.Searchform.EditSearch.value == "" )
		{
			alert("Please enter one or more search terms in the search box.");
			document.forms.Searchform.action = "Search.asp";
		}
		else
		{
			document.forms.Searchform.action = "search.asp";
		}
	}
}
// end hide -->