function write_swf(v_bild, v_flash, v_breite, v_hoehe) {
document.write("<object type=\"application/x-shockwave-flash\" data=\""+ v_flash +"\" name=\"logo\" alt=\"Start\" width=\""+ v_breite +"\" height=\""+ v_hoehe +"\" hspace=\"0\" vspace=\"0\" id=\"logo\">");
document.write("<param name=\"movie\" value=\""+ v_flash +"\" \/>");
document.write("<param name=\"quality\" value=\"high\" \/>");
document.write("<param name=\"bgcolor\" value=\"#3C3330\" \/>");
document.write("<param name=\"wmode\" value=\"opaque\" \/>");
document.write("<param name=\"menu\" value=\"false\" \/>");

document.write("<img src=\""+ v_bild +"\" alt=\"logo\" width=\""+ v_breite +"\" height=\""+ v_hoehe +"\" alt=\"Start\" \/>");
document.write("<\/object>");
}