JW player IE video problem solved

If you are using the JW player, you may notice in IE 8 that the video stalls while the audio continues to play. There is a fix for this.

By adding the following in the default code "?' + Math.round(1000 * Math.random()),"
it forces a random number and so forces a reload.
Don't know all the technical aspects of how this works, but it seems to solve the IE problem.

<script src="http://autopilotcashbegins.com/swfobject.js"></script>
<div id="mediaspace"><a href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash">Get the Adobe Flash Player Here to Watch This Video</a></div>
<script type='text/javascript'>
var so = new SWFObject('http://autopilotcashbegins.com/player.swf?' + Math.round(1000 * Math.random()), 'mpl', '470', '320', '9.0.124');
          so.addParam('allowscriptaccess',   'always');
          so.addParam('allowfullscreen',     'true');
          so.addVariable('file',             'http://autopilotcashbegins.com/youtube.flv');
          so.addVariable('autostart',        'true');
          so.write('mediaspace');
    </script>