function writeObject (film, farbe, breite, hoehe)
 {document.write('<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="'+breite+'" HEIGHT="'+hoehe+'">');
  document.write('<PARAM NAME="movie" VALUE="'+film+'">');
  document.write('<PARAM NAME="quality" VALUE="high">');
  document.write('<PARAM NAME="bgcolor" VALUE="#'+farbe+'">');
  }

function writeEmbed (film, farbe, breite, hoehe)
 {document.write('<EMBED SRC="'+film+'" QUALITY="high" BGCOLOR="#'+farbe+'" WIDTH="'+breite+'" HEIGHT="'+hoehe+'" SWLIVECONNECT="false" TYPE="application/x-shockwave-flash" ');
  document.write('PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">');
  document.write('</EMBED>');
  }

function closeObject ()
 {document.write('</OBJECT>');
  }