function swf(url, breite, hoehe, name) {
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,22,0"');
document.write('id="' + name + '"');
document.write('align="center"');
document.write('height="' + hoehe + '"');
document.write('width="' + breite + '">');
document.write('<param name="allowScriptAccess" value="sameDomain">');
document.write('<param name="movie" value="swf/' + url + '.swf">');
document.write('<param name="quality" value="high">');
document.write('<param name="wmode" value="transparent">');
document.write('<param name="bgcolor" value="#ffffff">');
document.write('<embed src="swf/' + url + '.swf" quality="high" wmode="transparent" name="Navigation" id="'+name+'" swliveconnect="true" allowscriptaccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" align="middle" height="' + hoehe + '" width="' + breite + '">');
document.write('</object>');
}

