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));

  if ((this.w3c || this.ms) && !this.isOldOp && !this.isMacIE) {
		document.write( " Kontrast " );
	document.write( "<a href=\"#\" onclick=\"setActiveStyleSheet('normal');\" title=\"Dunkle Schrift auf hellem Hintergrund.\"><img src=\"/bilder/styleswitcher_positiv.gif\" alt=\"Dunkle Schrift auf hellem Hintergrund.\"></a> " );
	document.write( "<a href=\"#\" onclick=\"setActiveStyleSheet('negativ');\" title=\"Helle Schrift auf dunklem Hintergrund.\"><img src=\"/bilder/styleswitcher_negativ.gif\" alt=\"Helle Schrift auf dunklem Hintergrund.\"></a>" );
}
}