function flash(pfad, breite, hoehe, bg, altpfad, alttxt) {

 	document.write('<object data="'+pfad+'" type="application/x-shockwave-flash" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab" width="'+breite+'" height="'+hoehe+'">');
		document.write('<param name="movie" value="'+pfad+'" />');
		document.write('<param name="quality" value="high" />');
		document.write('<param name="scale" value="exactfit" />');
		document.write('<param name="menu" value="true" />');
		document.write('<param name="bgcolor" value="#'+bg+'" />');
		document.write('<param name="WMode" value="Opaque" />');
		document.write('<img src="'+altpfad+'" style="width:'+breite+'px;height:'+hoehe+'px;" border="0" alt="'+alttxt+'"/>');
document.write('</object>');
}
