//function navigation_gotosport(el) {
//	idx = el.selectedIndex;
//	val = el[idx].value;
//	if (val != "---") {
//		document.location = "/" + val + ".asp";
//	}
//
//}
navigation_curmenu = "";

function navigation_ShowMenu(name) {
	if (name != navigation_curmenu) {
		var el = document.getElementById(name);
		if (el != undefined)
			el.style.display = "";
		var el = document.getElementById(navigation_curmenu);
		if (el != undefined)
			el.style.display = "none";
		navigation_curmenu = name;
	}
	else {
		var el = document.getElementById(navigation_curmenu);
		if (el != undefined)
			el.style.display = "none";
		navigation_curmenu = "";
	}
}

function checkSearchForm()
{
	var el = document.getElementById("searchFor");
	if (el != undefined)
	{
		if (el.value.length < 3)
		{
			global_showFormErrBox(el, "search must have 3 characters");
			return false;
		}
	}
	return true;
}
