function create_flash(quelle_flash, quelle_bild, breite, hoehe, version, alttext)
{

     var stringFlash = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version='+version+',0,0,0" width="'+breite+'" height="'+hoehe+'"><param name="movie" value="'+quelle_flash+'"><param name="quality" value="high"><param name="wmode" value="transparent"><param name="menu" value="false"><embed src="'+quelle_flash+'" quality="high" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+breite+'" height="'+hoehe+'"></embed></object>';
     var stringNoFlash = '<img src="'+quelle_bild+'" width="'+breite+'" height="'+hoehe+'" alt="'+alttext+'" />';
           
     writeFlash(stringFlash, stringNoFlash, version);
}