function CreateFlashControl(divID, objectID,width, height, flashFilePath)
{
  var d = document.getElementById(divID);
  d.innerHTML = 
    '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + ' id=' + objectID 
    + ' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"'
    + ' width=' + width 
    + ' height=' + height + '>'
    + ' <param name="movie" value=' + flashFilePath + '>'
    + ' <param name="quality" value="high">'
    + ' <param name="bgcolor" value="#ffffff">'
    + ' <embed src=' + flashFilePath
    + ' quality="high" bgcolor="#FFFFFF"'
    + ' width=' + width 
    + ' height=' + height 
    + ' name=' + objectID
    + ' align="left"'
    + ' type="application/x-shockwave-flash"'
    + ' pluginspage="http://www.macromedia.com/go/getflashplayer">'
    + ' </embed></object>';
}