function createplayer2(theFile, go, image, w, h, member, div_id ) 
{
    if( !div_id ) div_id = "placeholder";

    var s = new SWFObject("http://www.etokodori.com/flash/mediaplayer_etoko2.swf","playerID", w, h,"7");

    s.addParam("allowfullscreen","true");
    s.addParam("allowscriptaccess","always");
    s.addParam('wmode', 'transparent');

    s.addVariable("file",theFile);
    s.addVariable("width",w);
    s.addVariable("height", h);
    s.addVariable("displayheight",(h-20));
    s.addVariable("bufferlength","2");
    s.addVariable("streamscript", "lighttpd");
    s.addVariable("image", image);
    s.addVariable('type','flv');
    s.addVariable('quality','high');

    if( member == 1 )
    {
        s.addVariable('logo','http://tracking.dtiserv2.com/counter?u=146');
    } 
    else 
    {
        s.addVariable('logo','http://tracking.dtiserv2.com/counter?u=147');
    }

    s.write( div_id );
}


