function switchLang(wert)
{
Sprache.LINK.value = CONTENT.location;
URL = Sprache.LINK.value;
var Page = URL.substring(26,80);
Sprache.LINK.value = Page;

	if (wert == 'GER')
	{
	document.Sprache.action = '../ger/main.php';
	document.Sprache.submit();
	}
	else
	{
		if (wert == 'ENG')
		{
		document.Sprache.action = '../eng/main.php';
		document.Sprache.submit();
		}
		else
		{
			if (wert == 'FRA')
			{
			document.Sprache.action = '../fra/main.php';
			document.Sprache.submit();
			}
			else
			{
			document.Sprache.action = '../ger/main.php';
			document.Sprache.submit();
			}
		}
	}
}
