//Prüfen, ob umgebendes Frameset korrekt geladen wurde, wenn nicht Reload ausführen
if (parent.frames == null || parent.frames.length < 1) {
	strLocation = this.location.href;
	// etwaigen Querystring codieren, um doppelten Querystring zu vermeiden
	strLocation = strLocation.split("?").join("___");
	strLocation = strLocation.split("&").join("__");
	strLocation = strLocation.replace("chronik_iframe.asp", "chronik_results.asp");

	this.location.href = "/index.asp?contenturl=" + strLocation;
}