// www.osterfestspiele-salzburg.at
// Copyright (c) 2003, 2005 atmedia.net
function ofsSwitchLanguage(lc) {
var url = String(window.location.href);
if (typeof(url.replace) == 'function' && typeof(lc) == 'string') {
	var newurl = url;
	newurl = newurl.replace(/\/(de|en)\//, '/' + lc + '/');
	if (url != newurl) {
		window.location.href = newurl;
		return false;
	}
}
return true;
}