//helper javascript file to embed flash files.
//used in CMS Flash control see FlashPhControl project
// created trush010 5/23/07
function CreateControl(DivID, CLSID, ObjectID,WIDTH, HEIGHT, URL, AUTOSTART)
{
  var d = document.getElementById(DivID);
  d.innerHTML = '<object classid=' + CLSID + ' id=' + ObjectID + ' width=' + WIDTH + ' height=' + HEIGHT +'><param name="URL" value=' + URL + '><param name="autoStart" value=' + AUTOSTART + '/><EMBED src=' + URL + ' wmode="transparent" type="application/x-shockwave-flash" controller="true" autoplay="false" loop="true" width=' + WIDTH + ' height=' + HEIGHT + ' menu="false" quality="high" bgcolor="#003399"></object>';
}


function CreateControlIE(DivID, CLSID, ObjectID,WIDTH, HEIGHT, URL, AUTOSTART)
{
  var d = document.getElementById(DivID);
  d.innerHTML = '<EMBED src=' + URL + ' wmode="transparent" type="application/x-shockwave-flash" controller="true" autoplay="false" loop="true" width=' + WIDTH + ' height=' + HEIGHT + ' menu="false" quality="high" bgcolor="#003399">';
}
