glob_MainURL = "/german/index_german.htm";
glob_FrameURL = "/german/index_german.htm";
glob_DefaultURL = "/index.htm";
glob_ContentFrame = "body";
glob_RequestString = "setHREF";

function testframeset(framename) {
	if ((self == top) || (self.name != framename)) {
		top.location.href = glob_FrameURL + "?" + glob_RequestString + "=" + escape(self.location.href);
	}
}

function getrequest() {
	var requested_url = location.search ? unescape(location.search.substring(glob_RequestString.length + 2)) : glob_DefaultURL;
 	top.frames[glob_ContentFrame].location.href = requested_url;
}