// insert JavaScript source code here


function AddMovie(){

  var d = document.createElement( 'div' );
  //d = document.getElementById( 'xxx' );

  d.innerHTML = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="760" height="520" id="KricketsHome5" align="middle" >' +
   ' <param name="allowScriptAccess" value="sameDomain"> ' +
   ' <param name="movie" value="KricketsHome5.swf"> ' +
   ' <param name="quality" value="high"> ' +
   ' <param name="wmode" value="transparent"> ' +
   ' <param name="bgcolor" value="#ffffff"><embed src="KricketsHome5.swf" quality="high" bgcolor="#ffffff" width="760" height="520" name="KricketsHome5" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="transparent" /> ' +
   ' </object>';
                                
   //d.style.zIndex = '2';
   //d.style.position = 'relative';
          //d.innerHTML = 'Hi';

   document.body.appendChild( d );

   if (navigator.userAgent.indexOf("MSIE")!=-1){
     document.getElementById( 'tx' ).style.top = 514;
     document.getElementById( 'tx' ).style.left = 20;
     document.getElementById( 'redbox' ).style.top = 535;
     document.getElementById( 'redbox' ).style.left = 10;
   } else {
     document.getElementById( 'tx' ).style.top = 507;
     document.getElementById( 'tx' ).style.left = 20;
     document.getElementById( 'redbox' ).style.top = 528;
     document.getElementById( 'redbox' ).style.left = 8;
     document.getElementById( 'KricketsHome5' ).style.left = 100;

   }

}
