﻿function flashReka(tdid, width, height, theSWF)
{
  document.getElementById(tdid).innerHTML = "<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' width=" + width + " height=" + height + ">"+
  "<param name=movie value='" + theSWF + "' />"+
  "<param name='scale' value='noscale' />"+
  "<param name='salign' value='lt' />"+
  "<param name=wmode value=transparent />"+
  "</object>";
}

function doFlash(tdid, width, height, theSWF)
{
  document.getElementById(tdid).innerHTML = "<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' width=" + width + " height=" + height + ">"+
  "<param name=movie value='" + theSWF + "' />"+
  "<param name=wmode value=transparent />"+
  "</object>";
}

function doFlash2(tdid, width, height, theSWF, SWFid)
{
  document.getElementById(tdid).innerHTML = "<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' id=" + SWFid + " width=" + width + " height=" + height + ">"+
  "<param name=movie value='" + theSWF + "' />"+
  "<param name=wmode value=transparent />"+
  "</object>";
}

function flashReka2(tdid, tdWith, tdHeight, theSWF)
{
    document.getElementById(tdid).innerHTML = "<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' width='" + tdWith + "' height='" + tdHeight + "'>"+
    "<param name=movie value='" + theSWF + "' />' />"+
    "<param name='scale' value='noscale' />"+
    "<param name='salign' value='lt' />"+
    "<param name='wmode' value='transparent' />"+
    "</object>";
}


