

function showToolbox()
{
	/* Alle / sowie " und ' mŸssen escaped werden */

	this.w3c = (document.getElementById);
	this.ms = (document.all);
	this.userAgent = navigator.userAgent.toLowerCase();
	this.isMacIE = ((this.userAgent.indexOf('msie') != -1) && (this.userAgent.indexOf('mac') != -1) && (this.userAgent.indexOf('opera') == -1));
	this.isOldOp = ((this.userAgent.indexOf('opera') != -1)&&(parseFloat(this.userAgent.substr(this.userAgent.indexOf('opera')+5)) <= 7));

	document.write( "<form action=\"switch\">" );
  document.write( "<div id=\"toolbox\">" );

  if ((this.w3c || this.ms) && !this.isOldOp && !this.isMacIE) {
		document.write( "<label for=\"style\" title=\"Hier k&ouml;nnen Sie das Aussehen dieser Seiten ver&auml;ndern\"><b>Layout:<\/b><\/label><br \/>" );
	}

	document.write( "<select id=\"style\" size=\"1\" onchange=\"setActiveStyleSheet(value);\">" );
	document.write( "<option selected=\"selected\" disabled=\"disabled\">ausw&auml;hlen<\/option>" );
	document.write( "<option value=\"Standard style\" title=\"Gestaltung f&uuml;r grafische Browser\">Standard Style<\/option>" );
	document.write( "<option value=\"XXL Style\" title=\"Ansicht mit vergr&ouml;&szlig;erter Schrift\">XXL Style<\/option>" );
	//document.write( "<option value=\"Print Style\" title=\"Formatierung f&uuml;r die Druckausgabe\">Print Style<\/option>" );
	document.write( "<\/select>" );
	document.write( "<\/div><br><br>" );
	document.write( "<\/form>" );
	document.write( "<\/div>" );
	document.write( "<\/div>" );
}

