function Flashobjekt(film,hoehe,breite) 
{ 
  var str = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.#version=5,0,30,0" height="'+hoehe+'" width="'+breite+'"> ';
  str += '<param name="movie" value="'+film+'.swf"> ';
  str += '<param name="quality" value="best"> ';
  str += '<param name="play" value="true"> '; 
  str += '<param name="menu" value="false"> ';
  str += '<param name="wmode" value="transparent"> ';
  str += ' <embed wmode=transparent height="'+hoehe+'" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" src="'+film+'.swf" type="application/x-shockwave-flash" width="'+breite+'" quality="best" play="true"></embed></object>';

  document.write(str);
}


