function makeFlash(target, f_path, f_width, f_height, f_wmode)
{
	var myObjectElement = document.createElement('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+ f_width +'" height="'+ f_height +'"></object>');
	var myParamElement1 = document.createElement('<PARAM NAME=movie value="'+ f_path +'">');
	var myParamElement2 = document.createElement('<Param name=quality value=high>');
	
	myObjectElement.appendChild(myParamElement1);
	myObjectElement.appendChild(myParamElement2);

//	if (f_wmode) {
		var myParamElement3 = document.createElement('<param name=wmode value=transparent>');
		myObjectElement.appendChild(myParamElement3);
//	}
	
	eval(target).appendChild(myObjectElement);
}