function SwitchLanguage(newLang)
{

	if (newLang == "EN") 
	{	
		top.SITE.document.location = "start_en.asp";
		top.MENU.document.location = "menu_en.asp";
	}

	if (newLang == "SE")
	{
		top.SITE.document.location = "start.asp";
		top.MENU.document.location = "menu.asp";
	}

}