function flash_load( url, width, height, name )
{
	var OFLA = 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="'+width+'" height="'+height+'"></object>');

	var PFLA1 = document.createElement('<Param NAME="movie" value="'+url+'">');  
	var PFLA2 = document.createElement('<Param name="quality" value="high">');
	var PFLA3 = document.createElement('<Param name="wmode" value="transparent">');


	OFLA.appendChild(PFLA1);
	OFLA.appendChild(PFLA2);
	OFLA.appendChild(PFLA3);
	name.appendChild(OFLA);
}