/*
* produced by orange digital GmbH - All rights reserved -
* http://www.orange-digital.de - info@orange-digital.de
*
* Hier ist eine Funktion enthalten, um den Code fuer einen Flash-Banner
* auszugeben.
*
* @author Gerhard Siegesmund <gerhard.siegesmund@orange-digital.de>
*/

function flash_banner (swf, width, height, bgcolor) {
  document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+width+'" height="'+height+'">');
  document.writeln('<param name=movie value="'+swf+'">');
  document.writeln('<param name=quality value=high>');
  document.writeln('<param name=menu value=false>');
  document.writeln('<param name=bgcolor value='+bgcolor+'>');
  document.writeln('<embed src="'+swf+'" quality=high type="application/x-shockwave-flash" width="'+width+'" height="'+height+'">');
  document.writeln('</embed>');
  document.writeln('</object>'); 
}
