
function framesetTest(topIndex, menuIndex, nodeIndex, sessionId, tbkid, kategorie, ergebnis, admin) {
	if (admin) return;
	
	var loc = top.location.href;
	if (loc.indexOf('_data')>-1) return;
	
	var frameset = false;
	if (top.frames && top.frames.length>1) frameset=true;

	if(frameset == false) {
		var Address="http://"+window.location.host+"/index.html?node="+topIndex+"&_menu=11514&session="+sessionId+"&main.src="+nodeIndex+"&left.src="+menuIndex;
		if (tbkid) Address="http://"+window.location.host+"/kurs.html?node="+topIndex+"&session="+sessionId+"&tbkid="+tbkid;
		else if (ergebnis) Address="http://"+window.location.host+"/suche.html?node="+topIndex+"&session="+sessionId+"&"+menuIndex+"="+escape(ergebnis)+"&_key="+menuIndex;
		else if (kategorie) Address="http://"+window.location.host+"/kategorie.html?node="+topIndex+"&session="+sessionId+"&kategorie="+escape(kategorie);
		
		if(document.images) {
			top.location.replace(Address);
		} else {
			top.location.href=Address;
		}
	}
}

