
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));

	/*  if ((this.w3c || this.ms) && !this.isOldOp && !this.isMacIE) {
	
			document.write( "<div id=\"schriftstiltext2\" class=\"schriftstiltext{=THEMEID=}\" ><label for=\"style\" title=\"Hier k&ouml;nnen Sie das Aussehen dieser Seiten ver&auml;ndern\"><h1>Stil:</h1><\/label></div><br \/>" );
		}
*/
	document.write( "<form action=\"switch\">" );
  document.write( "<div id=\"toolbox\">" );

	document.write( "<select id=\"style\" class=\"schriftstilselect\" size=\"1\" onchange=\"setActiveStyleSheet(value);\">" );
	document.write( "<option selected=\"selected\" disabled=\"disabled\">Bitte ausw&#228;hlen<\/option>" );
	document.write( "<option value=\"Standard\" title=\"Formatierung f&uuml;r die Druckausgabe\">Standard<\/option>" );
	document.write( "<option value=\"Blau-Gelb-Text\" title=\"Gestaltung f&uuml;r grafische Browser\">Blau-Gelb-Text<\/option>" );
	document.write( "<option value=\"Ohne CSS\" title=\"Ansicht mit vergr&ouml;&szlig;erter Schrift\">Ohne CSS<\/option>" );
	document.write( "<\/select>" );
	document.write( "<\/div>" );
	document.write( "<\/form>" );
	/*document.write( "<\/div>" );
	document.write( "<\/div>" );*/
}

