//Change the variables below
//Set height to your videos height in pixels
var width = "300";
//Set height to your videos height in pixels
var  height = "168";
//set player to the name of the flash video player you want to use
var player = "300_auto_flv_player.swf";
//Set auto play to true, if you want video to auto play, false if you don't
var autoPlay = "false";
//set VidSrc to the video file you want to play
var vidSrc = "eData_Coach_New.flv";
//set to what you want the players background color to be. #FFFFFF =  white, #000000 = black
var bgcolor = "#000000";

//#### Do not change anything below, unless you know what you are doing ############################################################
movie = player + '?autoPlay=' + autoPlay + '&vidSrc=' + vidSrc;
document.write('<object width="'+ width +'" height="'+ height +'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" id="FLVPlayer" align="" /> ');
document.write('<param name="movie" value="'+ movie +'" /> ');
document.write('<param name="salign" value="lt" /> ');
document.write('<param name="quality" value="high" /> ');
document.write('<param name="scale" value="noscale" /> ');
document.write('<param name="bgcolor" value="'+ bgcolor +'" /> ');
document.write('<embed width="'+ width +'" height="'+ height +'" src="'+ movie +'" quality="high" scale="noscale" bgcolor="'+ bgcolor +'" name="FLVPlayer" salign="LT" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> ');
document.write('</object>');