// JavaScript Document
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) {  // if we've detected an acceptable version
	var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="566" height="56" '
	+ 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
	+ '<param name="movie" value="fileadmin/brunn/flash/menu.swf" /><param name="quality" value="high" />'
	+ '<embed src="fileadmin/brunn/flash/menu.swf" quality="high" '
	+ 'width="566" height="56" name="menu" play="true" loop="false" quality="high" allowScriptAccess="sameDomain" '
	+ 'type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">'
	+ '<\/embed><\/object>';
	document.write(oeTags);   // embed the flash movie
  } else {  // flash is too old or we can't detect the plugin
	var alternateContent = ''
	+ '<table width="566" height="56" border="0" cellpadding="0" cellspacing="0" class="w1">'
    + '  <tr align="left">'
    + '    <td width="95"><img src="fileadmin/brunn/images/m1.gif" alt="" width="94" height="34" /></td>'
    + '    <td width="94"><img src="fileadmin/brunn/images/m2.gif" alt="" width="93" height="34" /></td>'
    + '    <td width="95"><img src="fileadmin/brunn/images/m3.gif" alt="" width="94" height="34" /></td>'
    + '    <td width="94"><img src="fileadmin/brunn/images/m4.gif" alt="" width="93" height="34" /></td>'
    + '    <td width="95"><img src="fileadmin/brunn/images/m5.gif" alt="" width="94" height="34" /></td>'
    + '    <td width="93"><img src="fileadmin/brunn/images/m6.gif" alt="" width="93" height="34" /></td>'
    + '  </tr>'
    + '  <tr align="center" valign="middle">'
    + '    <td height="22" class="mbg"><a href="/br_start.html">STARTSEITE</a></td>'
    + '    <td height="22" class="mbg"><a href="/service.html">SERVICE</a></td>'
    + '    <td height="22" class="mbg"><a href="/politik.html">POLITIK</a></td>'
    + '    <td height="22" class="mbg"><a href="/verwaltung.html">VERWALTUNG</a></td>'
    + '    <td height="22" class="mbg"><a href="/formulare.html">FORMULARE</a></td>'
    + '    <td height="22" bgcolor="#454f51"><a href="/br_suche.html">SUCHE</a></td>'
    + '  </tr>'
    + '</table>';
	document.write(alternateContent);  // insert non-flash content
  }

