function buildSatay(elementId,swf,image,width,height) {
    /*
    elementId   => string   : ID des Bereichs, in den das Flash-Tag gebaut wird
    satay       => string   : Pfad zum "Satay Clip"
    swf         => string   : Pfad zur SWF, die vom "Satay Clip" geladen wird
    image       => string   : Pfad zum Alternativbild, für bereits abgespielte SWF oder User ohne Flash-Plugin
    width       => int      : Breite der SWF bzw. des Bilds
    height      => int      : Höhe der SWF bzw. des Bildl
    */
    
    
    
    //HTML Code konkatenieren  
    
    //Image Tag
    var imageTag='<img src="'+image+'" width="'+width+'" height="'+height+'" alt="">';
   
    //Flash Datei bereit im Cookie registriert?
    if(document.cookie.search(swf)<0) {    
        //Satay Methode (http://www.alistapart.com/articles/flashsatay/)
        var html='<object type="application/x-shockwave-flash" data="'+swf+'" width="938" height="'+height+'">';
            html+='<param name="movie" value="'+swf+'">';
            html+=imageTag;
        html+='</object>';    
        
        //Cookie setzen
        var value=swf+"=true";
        document.cookie=value;
        
    } else {
        //Alternativ Inhalt
        var html=imageTag; 
    }
    
    
    //HTML Code in vorgesehen Container injizieren
    var buildNode=document.getElementById(elementId);
    buildNode.innerHTML=html;   
   
}