
function embed_swf(dateiname, breite, hoehe)
{

			var tmptext;
			var includetext;
			includetext = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"';
			includetext = includetext + '  codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" ';

			includetext = includetext + ' width="'+breite+'px" height="'+hoehe+'px" border="0">';

			includetext = includetext + '<PARAM NAME=movie VALUE="'+dateiname+'"> <PARAM NAME=quality VALUE=high>  <PARAM NAME=bgcolor VALUE=#FFFFFF> <param name="scale" value="noscale"> <param name="allowScriptAccess" value="sameDomain" />';

			includetext = includetext + ' <EMBED src="'+dateiname+'" quality=high  bgcolor=#FFFFFF scale=noscale ';

			includetext = includetext + ' width="'+breite+'px" height="'+hoehe+'px"';

			includetext = includetext +' TYPE="application/x-shockwave-flash" allowScriptAccess="sameDomain" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED></OBJECT>';

			document.write(includetext);

}
