if (parent.frames.length == 0)
{
	parent.location.href = "http://www.filmen.at/filmen.at.htm?page=" + encodeURIComponent(document.location.href);
}
else
{
	if (parent.location.search.indexOf("page=") > -1 && parent.name != "redirected")
	{
		parent.name = "redirected";
		var page = parent.location.search.substr(parent.location.search.indexOf("page=") + 5);
		if (page.indexOf("&") > -1)
			page = page.substr(0, page.indexOf("&"));
		page = decodeURIComponent(page);
		if (page != parent.frames['Hauptframe'].location.href)
			parent.frames['Hauptframe'].location.href = page;
	}
}

