		function golang() {
			var appVers;
			var userLang;
			var	sysLang;
			var pos1;
			var pos2;
			appVers = "" + navigator.appVersion;
			userLang = "" + navigator.userLanguage;
			sysLang = "" + navigator.systemLanguage;
			pos1 = appVers.indexOf("de)");
			pos2 = appVers.indexOf("de-de)");
			if ((userLang == "de") || (userLang == "de-de") || (sysLang == "de") || (sysLang == "de-de") || (pos1 >= 0) || (pos2 >= 0)) {
				window.location.assign("http://www.ugsoft.de/de")
			}
			else {
				window.location.assign("http://www.ugsoft.de/intl")
			}
		}

