function SetLang(value) {
	var stuff = "up=language:" + value;
	var expdate = new Date("December 31, 2050");
        var expiry = expdate.toGMTString();
	stuff = stuff + "; expires=" + expiry;
	document.cookie = stuff + "; path=/";
	}

function GetLang() {
	var allstuff = document.cookie;
	var stuff = allstuff.split(":");
	return stuff[1];
	}
	
	if (location.href.indexOf('nomos') == 11) {
	bits = location.href.substr(20);
	location.replace("http://www.usabilitypartners.se/"+bits);
	}