

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( "<span id=\"toolbox\">" );*/

  if ((this.w3c || this.ms) && !this.isOldOp && !this.isMacIE) {
		document.write( "<span title=\"Hier k&ouml;nnen Sie das Aussehen dieser Seiten ver&auml;ndern\">Anzeige:&nbsp;<\/span>" );
	}

	document.write( "<select id=\"style\" size=\"1\" onchange=\"setActiveStyleSheet(value);\">" );
	document.write( "<option value=\"XX\" selected=\"selected\" disabled=\"disabled\">ausw&auml;hlen<\/option>" );
	document.write( "<option value=\"Standard\" title=\"Gestaltung f&uuml;r grafische Browser\">Standard<\/option>" );
	document.write( "<option value=\"grosse Schrift\" title=\"Ansicht mit vergr&ouml;&szlig;erter Schrift\">große Schrift<\/option>" );
	document.write( "<option value=\"sehr große Schrift\" title=\"Ansicht mit sehr gro&szlig;er Schrift\">sehr große Schrift<\/option>" );
	document.write( "<option value=\"Einfach\" title=\"Textformatierung z.B. f&uuml;r die Druckausgabe\">Text<\/option>" );
	document.write( "<\/select>" );
/*	document.write( "<\/span>" );
	document.write( "<\/form>" );
	document.write( "<\/span>" );
	document.write( "<\/div>" );*/
}
