function CreateControl(DivID, url, name, width, height, more){
  var d = document.getElementById(DivID);
  d.innerHTML = '<object style="" classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="' + DivID + '" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="' + width + '" height="' + height + '"><param name="movie" value="' + url + '" /><param name="quality" value="High" /><' + 'embed src="' + url + '" type="application/x-shockwave-flash" name="' + name + '" pluginspage="http://www.macromedia.com/go/getflashplayer" width="' + width + '" height="' + height + '" ' + more + ' /&gt;<' + '/object>';
}
