function OnLanguageChange()
{
	switch(lstLanguageOptions(lstLanguageOptions.selectedIndex).value)
	{
		case "1033":
			break;
		case "1043":
			break;
	}
	//window.location = lstSiteOptions(lstSiteOptions.selectedIndex).value
}

function OnMenuClick(iMenuName)
{
	var strLocation = window.location
	switch(iMenuName)
	{
		case "home":
			strLocation = "./index.htm"
			break;
		case "contact":
			strLocation = "./contact.htm"
			break;
		case "events":
			strLocation = "./events.htm"
			break;
		case "news":
			strLocation = "../articles/news.htm"
			break;
		case "aboutus":
			strLocation = "./aboutus.htm"
			break;
		case "results":
			strLocation = "./results.htm"
			break;
		case "documents":
			strLocation = "./documents.htm"
			break;
		default:
			strLocation = "./index.htm"
			break;
	}

	window.location = strLocation
}

function OnLinkClick(iLink)
{
	window.location = iLink
}
