<!-- frameset erzwingen für Dateien r/u -->
<!--
if (self.location.href == top.window.location.href)
{
 // top.window.location.replace("index.htm" + "?" + self.location.href);
 // hiermit wird Host in Adreßzeile doppelt ausgegeben ("Spam"), deswegen geändert ...
 var abPos = self.location.href.lastIndexOf("/");
 top.window.location.replace("index.htm" + "?" + self.location.href.substr(abPos + 1, self.location.href.length));
}
//-->