// JavaScript Document
// Version check based upon the values entered above in "Globals"
var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);


// Check to see if the version meets the requirements for playback
if (hasReqestedVersion) {  // if we've detected an acceptable version
    var oeTags = '<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
+ 'codebase="http://active.macromedia.com/flash4/cabs/swflash.cab#version=4,0,0,0"'
+ 'id="index" width="600" height="400">'
+ '<PARAM NAME=movie VALUE="index.swf"> <PARAM NAME=quality VALUE=high>  <PARAM NAME=loop VALUE=false> <PARAM NAME=bgcolor VALUE=#FFCC66> <EMBED src="index.swf" quality=high loop=false bgcolor=#FFCC66  WIDTH="600" HEIGHT="400" NAME="index" ALIGN=""'
+ 'TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>'
+ '</OBJECT>'; 
	
	
	
	
    document.write(oeTags);   // embed the Flash Content SWF when all tests are passed
  } else {  // flash is too old or we can't detect the plugin
    var alternateContent = 'Probier <img src="images/anoether1.JPG"> nochmal!';
    document.write(alternateContent);  // insert non-flash content
  }
// 

