﻿

			<!-- 
			 
			var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
			if(hasRightVersion) {  // sofern eine akzeptable Version ermittelt wurde

				var oeTags = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"'
				+ 'width="' + breite + '" height="' + hoehe + '" '
				+ 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
				+ '<param name="wmode" value="transparent"> <param name="movie" value="'
				+ dateiname				
				+ '"><param name="quality" value="high">'
				+ '<embed style="margin-top:0px;margin-bottom:0px;" mode="transparent" src="'
				+ dateiname
				+ '" quality="high" '
				+ 'width="' + breite + '" height="' + hoehe + '" name="temp" '
				+ '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);   // Flash-Film einbetten
			  }else{
				document.write(bilddatei);  
			  }
			 
			 
			
			 
			 
			// -->
