function initframeset()
{
	if (top.location.search && top.frames['detail'])
		top.frames['detail'].location.replace(top.location.search.substr(1));
	return true;
}

window.onload = function()
{
	var l = location.pathname;

	var e = document.getElementById("nomenu");
	if (e) e.getElementsByTagName("A")[0].href += "?" + l;

	var f = top.frames["banner"];
	if (! f) return true;
	e = f.document.getElementById("language");
	if (! e) return true;
	var p = e.href.indexOf("?");
	if (p >= 0) e.href = e.href.substr(0, p);
	if (l.toLowerCase().indexOf("english") >= 0)
		l = l.replace(/English/i, "German");
	else
		l = l.replace(/German/i, "English");
	e.href += "?" + l;

	return true;
}

if (self != top && self.name == "detail")
{
	document.write('<style type="text/css">#nomenu{display:none;}</style>');
}