I am having trouble showing a movie in a web page. The movie has been coverted to FLV and F4V and its high res. 1200 by 800. It appears and plays fine. But when you click to make it full screen its contines to play at 600 by 400. It should not do this. It’s a screen capture and needs show as 1200 by 800 when viewed full screen. It there any way to fix this ? My code is below if its needed.
-----------------------------------
<script type="text/javascript">
var s1 = new SWFObject("player.swf","ply","600","400","9","#FFFFFF");
s1.addParam("allowfullscreen","true");
s1.addParam("allowscriptaccess","always");
s1.addParam("flashvars","file=video.f4v&image=preview.jpg");
s1.write("container");
</script>

Your video file is probably lacking the metadata to tell the player what size it is.
Can you post a link to your video file?