var myObjectElement = document.createElement('<object id="'+flash_id+'" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="'+flash_width+'" height="'+flash_height+'"></object>');

var myParamElement1 = document.createElement('<PARAM NAME=movie value="'+flash_url+'">');  
var myParamElement2 = document.createElement('<Param name=quality value=high>');
var myParamElement2 = document.createElement('<Param name=wmode value=transparent>');
var myParamElement3 = document.createElement('<Param name=bgcolor value='+flash_color+'>');

myObjectElement.appendChild(myParamElement1);
myObjectElement.appendChild(myParamElement2);
myObjectElement.appendChild(myParamElement3);

myObjectLocation = eval("embedControlLocation"+flash_location_id);
myObjectLocation.appendChild(myObjectElement);

