function CreateObjectElemnt_Flash(DivID,scriptid, FlashUrl, width, height) {
	var myObjectElement = document.createElement('<object id="' + scriptid + '" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="' + width + '" height="' + height + '"></object>');
	var myParamElement1 = document.createElement('<param name="movie" value="' + FlashUrl + '">');  
	var myParamElement2 = document.createElement('<param name="quality"  value="high">');

	myObjectElement.appendChild(myParamElement1);
	myObjectElement.appendChild(myParamElement2);

	var obj = document.getElementById(DivID);
	obj.appendChild(myObjectElement);
}