function showToolbox()
{
	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\"><\/label>" );
	}

	document.write( "<select id=\"style\" size=\"1\" onchange=\"setActiveStyleSheet(value);\">" );
	document.write( "<option value=\"EfA House Style\" selected=\"selected\" disabled=\"disabled\">&nbsp;&nbsp;Stil ausw&auml;hlen<\/option>" );
	document.write( "<option value=\"EfA House Style\" title=\"Gestaltung f&uuml;r grafische Browser\">&nbsp;&nbsp;FFH grafisch<\/option>" );
	document.write( "<option value=\"EfA XXL Style\" title=\"Ansicht mit vergr&ouml;&szlig;erter Schrift\">&nbsp;&nbsp;FFH XXL Stil<\/option>" );
	document.write( "<option value=\"EfA Druck\" title=\"Formatierung f&uuml;r die Druckausgabe\">&nbsp;&nbsp;FFH Text Stil<\/option>" );
	document.write( "<\/select>" );
	document.write( "<\/div>" );
	document.write( "<\/form>" );
}

function MM_openBrWindow(theURL,winName,features) 
{ 
  window.open(theURL,winName,features);
 }