Anyone else have the problem with the video being confined to a tiny little box in the top of the window with Firefox?
Web person, if you're reading this:
If I recall right the IFrame height=100% is the issue. That doesn't work in FF. If you add a Style callout in the head by the Scripts it'll work:
<style type="text/css">
html, body, div, iframe { margin:0; padding:0; height:100%; }
iframe { display:block; width:100%; border:none; }
</style>
