// ÇÃ·¡½Ã ¸µÅ© 
function render_flash(swf_name,swf_width,swf_height){
	var text ='';
	text ='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="'+swf_width+'" height="'+swf_height+'">';
	text +='<param name="movie" value="'+swf_name+'">';
	text +='<param name="allowScriptAccess" value="SameDomain">';
	text +='<param name="quality" value="high">';
	text +='<param name="wmode" value="transparent">';
	text +='<embed src="'+swf_name+'" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+swf_width+'" height="'+swf_height+'">';
    text +='</embed>';
	text +='</object>';
	document.write(text);
}

