Fullscreen mode in Safari and Opera?

Good Afternoon

I am using an FLV Player which provides a standard fullscreen button. Now when I test the file onto IE and firefox, switching between full screen and normal screen modes works perfectly. However, with Opera and Safari, it turns fullscreen alright without any problems, but then the cursor turns into a hand clicking icon, and you cannot click on anything … nothing is interactive on the screen (except the ESC button which will take you back to normal mode). Even when you move your cursor over the buttons, the lightcolors (hover colors) do not show. It is something very strange !

Even guess what, right clicking anywhere on the screen does not show the flash menu (shows in normal mode though). I have been searching and searching. Any help guys?

Here is my html:

 
<html>
<head>
<script type="text/javascript" src="swfobject.js"></script>
</head>
<body style="padding:0px;margin:0px">
<div id="player1">
<a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a> to see this player.
</div>
<script type="text/javascript">
var s1 = new SWFObject("flvplayer.swf","single","500","500","7");
s1.addParam("allowfullscreen","true");
s1.addParam("menu","false");
s1.addVariable("file","scooter.flv");
s1.addVariable("image","preview.jpg");
s1.addVariable("frontcolor","0x55BB55");
s1.addVariable("lightcolor","0xFF4422");
s1.addVariable("backcolor","0x000000");
s1.addVariable("screencolor","0xFFCC00");
s1.addVariable("logo","IGLOOlogo.png");
s1.addVariable("showdigits","total");
s1.write("player1");
</script>
</body>
</html>