var divId='LiveActor';
var vWidth=150; // set to the width of .flv video
var vHeight=325; // set to the height of .flv video
var videoPath = '/Nike-COY-full150x325.flv';
var so = new SWFObject('/mdi_player10.swf', 'mymovie', vWidth, vHeight, '8');
so.addParam('allowScriptAccess','always');
so.addParam('swliveconnect','true');
so.addParam('wmode','transparent');
so.addVariable('videoPath', videoPath);
so.addVariable('videoW', vWidth);
so.addVariable('videoH', vHeight);
//
// CLIENT CONTROLLED FEATURES //
so.addVariable('autoplay', 'true');//If set to true, the video will begin playing as soon as it loads.
so.addVariable('autorewind', 'false'); //resets the video to the first frame when finished playing.
so.addVariable('hoursDelayInterval', 0); //Use a cookie to set number of hours before video plays again.
so.addVariable('daysDelayInterval', 0); //Use a cookie to set number of days before video plays again.
so.addVariable('weeksDelayInterval', 0); //Use a cookie to set number of days before video plays again.
so.addVariable('delayVideoId', 'video1'); //Set the videos ID number if you are cycling multiple videos.
so.addVariable('closewhendone', 'false'); //If set to true, the player will remove itself from the page when done playing.
//END CLIENT CONTROLLED FEATURES//
//
window.onload=function(){so.write(divId);}
