        var flashvars = {};

                /* flv player parameters */
                flashvars.playerpath = "video/";              // do not use relative paths! This is just a local example.
                flashvars.contentpath = "content";           // Use http://www.example.com/myfolder or /myfolder instead

                flashvars.video = "die-muskeln.flv";
                flashvars.preview = "demo-preview.jpg";

                flashvars.skin = "skin-applestyle.swf";
                flashvars.skincolor = "F7923C";
                flashvars.skinscalemaximum = "1";

                flashvars.autoscale = "true";
                // set autoscale to false to use width and height
                flashvars.videowidth = "320";
                flashvars.videoheight = "270";

                flashvars.captions = "video/demo-captions.xml";
                //flashvars.preroll = "test/demo-ad.flv";
                /* end */

                var params = {};
                        params.scale = "noscale";
                        params.allowfullscreen = "true";
                        params.salign = "tl";

                var attributes = {};
                        attributes.align = "left";

        /* embed flv player */
        // adapt the path to flvplayer.swf and expressInstall.swf
        // adapt the display size of the flash file
        swfobject.embedSWF("video/flvplayer.swf", "videoPlayer", "320", "270", "9.0.28", "video/expressInstall.swf", flashvars, params, attributes);
        /* end */
