Why doesn't the below mentioned code work?
<script>
flowplayer("player", "flowplayer-3.2.8.swf", {
onLoad: function() {
this.setVolume(100);
},
clip: {
autoBuffering: true,
},
var screenwidth = screen.width;
var screenheight = screen.height;
if (screenwidth / screenheight < 1.34) {
<!--[if IE]>
<plugins: {
controls: null
}/>
<![endif]-->
<!--[if !IE]><!-->
<plugins: {
controls: true
}/>
<!--<![endif]-->
});
</script>