<!-- start of JavaScript code, hide code for old browsers
// display links for loading the current page within the whole framework (if page is loaded directly)
var bLoadAllFrames = false;		// true: load page with the framework automatically, false: otherwise
if (!self.parent.parent.bSiteLoaded) {
	// display header with links to all frames
	self.document.write("<table width=\"100%\"><tr><td Align=\"Left\">");
	self.document.write("<a href=\"/\" title=\"Display the homepage of ETH - IGT\">ETH - IGT - Institute for Geotechnical Engineering</A></td>");
	self.document.write("<td Align=\"Right\">");
	var sAllFrames;
	sAllFrames = "/main.htm?" + self.location.href;
	if (sTOCFolder != "")
		sAllFrames = sAllFrames + ";" + sTOCFolder;
	self.document.write("<a href=\"" + sAllFrames + "\">Load All Frames</a></td></tr>");
	self.document.write("<tr><td colspan=2><hr size=\"1\"></td></tr></table>");
	// load all frames directly
	if (bLoadAllFrames)
		document.location = sAllFrames;
}
else {
	// display browser title = title of current document in WWW_Body
	parent.parent.document.title=document.title;
}
// -->