function InsertFlash(holderID,swfFile,width,height)
{
   var sUserAgent = navigator.userAgent;
   var isOpera = sUserAgent.indexOf("Opera") > -1;
   var bIsIE = sUserAgent.indexOf("compatible") > -1 && sUserAgent.indexOf("MSIE") > -1 && !isOpera;
   var path = document.location.href.substring(0,document.location.href.lastIndexOf('/')+1);
   var objectHTML = ('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+width.toString()+'" height="'+height.toString()+'"><param name="movie" value="'+(path+swfFile)+'" /><param name="quality" value="high" /><embed src="'+(path+swfFile)+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width.toString()+'" height="'+height.toString()+'"></embed></object>');

   if( bIsIE )
   {
      var oDiv =  document.getElementById(holderID);

          oDiv.innerHTML = objectHTML;
   }
   else
   {
      document.write(objectHTML);
   }
}