function playFlash(movieUrl, width, height) { // Version check based upon the values entered above in "Globals" // http://www.adobe.com/de/products/flashplayer/download/detection_kit // requiredMajorVersion, requiredMinorVersion, requiredRevision var hasReqestedVersion = DetectFlashVer(8, 0, 0); // Check to see if the version meets the requirements for playback if (hasReqestedVersion) { // embed the Flash Content SWF when all tests are passed AC_FL_RunContent( "src", movieUrl, "width", width, "height", height, "align", "middle", "id", "detectionExample", "quality", "high", "bgcolor", "#FFFFFF", "name", "detectionExample", "allowScriptAccess","sameDomain", "type", "application/x-shockwave-flash", 'codebase', 'http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab', "pluginspage", "http://www.adobe.com/go/getflashplayer" ); /* // if we've detected an acceptable version var alternateContent = '
' + '
' + ' ' + ' ' + ' ' + ' ' + '
' + '
'; // to avoid ie's flash content activation, the object tag must be set from outside the page. // so the code in alternateContent is set via the externWriteToDocument function. (http://msdn.microsoft.com/ieupdate) document.write('externWriteToDocument(' + "'" + alternateContent + "'" + ');'); */ } else { // flash is too old or we can't detect the plugin var alternateContent = '
' + '
' + '
Diese Animation benötigt einen Flash-Player der Version 8 oder höher. Get Flash
' + '
' + '
'; document.write(alternateContent); } }