I am trying to figure out why the viral-2 plugin, fullscreen and link only work when using Javascript. When using the <embed> option fullscreen does not work and the viral-2 menu does not show up at all. I am using a config file to call the plugins but I get the same results when I call them in the embed code.
The code can be seen here...
http://halo3montage.com/forums/2-h3m-forum/1739
Any ideas?

You can't have break tags "<br />" in the middle of your embed code.
<embed<strong><br /></strong>src='http://halomontage.com/jw/player.swf'<strong><br /></strong>
width='800'<strong><br /></strong>
height='650'<strong><br /></strong>
allowscriptaccess='always'<strong><br /></strong>
wmode='transparent' <strong><br /></strong>
flashvars='file=http://halomontage.com/jw/playlist-h3m.xml&config=http://halomontage.com/jw/config-h3m.xml'<strong><br /></strong>
/>
The embed code should be all on one line and it looks like you simply forgot to put allowfullscreen="true" in your embed code.
<embed src="http://halomontage.com/jw/player.swf" width="800" height="650" allowscriptaccess="always" <strong>allowfullscreen="true"</strong> wmode="transparent" flashvars="file=http://halomontage.com/jw/playlist-h3m.xml&config=http://halomontage.com/jw/config-h3m.xml" />Also, the JW FLV Player doesn't have transparency, so using wmode=transparent will only introduce you to all of the bugs that show up when using the Adobe Flash Player in wmode=transparent.