I do not want to sound dumb, but I am trying to put FLV Player in a HTML document. I put the "<script type="text/javascript" src="_embed/swfobject.js"></script>" in the head section of my page. Then, I added this to the body section:
"<div class="player">Player goes here.</div>
<script type="text/javascript">
var so = new SWFObject('_embed/player.swf','mpl','300','250','9');
so.addParam('allowfullscreen','true');
so. addParam('flashvars','file='_embed/video.flv'&autostart=true');
so.write('player');
</script>"
When I preview the site in IE or Firefox, all that shows is what is in the div tag. I have all of the source files in a folder titled "_embed". Can you please help me figure out why nothing is working? Thanks for your help!

1) There's a double-quote symbol before the first div tag,
2) there's a space in the second so.addParam line, between the period symbol and the letter "a",
3) the relative path for FLV video container files starts at the location of the movie (which is already the "_embed" directory), so use:
so.addParam('flashvars','file=video.flv&autostart=true');4) there is a single-quote symbol after "file=",
5) there is a single-quote symbol after "video.flv",
6) there is a double-quote symbol after the closing script tag.