// frameTest
// wurde diese Seite ohne Frame geladen?
// dann wird sie in das Schlechten-Frameset umgeleitet
    if(top == self) {
	var alteURL = unescape(window.location.href);
	var neueURL='http://www.deriva.de/rb/dieschlechten/cgi-bin/frame.pl?'+alteURL;

	var appVer = navigator.appVersion;
	var NS = (navigator.appName == 'Netscape') && ((appVer.indexOf('3') != -1) || (appVer.indexOf('4') != -1));
	var MSIE = (appVer.indexOf('MSIE 4') != -1);

        if (NS || MSIE)
            location.replace(neueURL);
        else
            location.href = neueURL;
    }
//Ende frameTest
