/* Flash Loader *** */
/*
    id        = Container-ID
    path      = Pfad zur Flash-Datei
    imgpath   = Pfad zum Bildverzeichnis
    sptpath   = Pfad zum Script
    width     = Breite
    height    = Höhe
*/

function swfLoader(id, path, width, height, wmode){

    if (el = document.getElementById(id)) {

        var str = "<object type='application/x-shockwave-flash' wmode='"+wmode+"' scale='noScale' salign='tl' data='"+path+"' id='obj_"+id+"' style='-moz-user-focus:ignore'>"; 
        str += "<param name='movie' value='"+path+"' />";
        str += "<param name='quality' value='high' />";
        str += "<param name='menu' value='false' />";
        str += "<param name='scale' value='noScale' />"; 
        /* str += "<param name='salign' value='tr' />";  */
        str += "<param name='wmode' value='"+wmode+"' />";
        str += "</object>";
        el.innerHTML = str;

        el1 = document.getElementById(id);
        el2 = document.getElementById("obj_"+id);
        
        if (el1 && el2){
            el1.style.height=height+"px";
            el2.style.width=width+"px";
            el2.style.height=height+"px";
        }
    }

}

