
function show_flash_F(f_id,f_url,f_width,f_height,f_para,transe_flag){
	if(typeof transe_flag == "undefined")
		transe_flag = true;
	document.write(get_flash_F(f_id,f_url,f_width,f_height,f_para,transe_flag));

	if(f_id != "")
		eval("window." + f_id + " = document.getElementById('" + f_id + "');");
}


function get_flash_F(f_id,f_url,f_width,f_height,f_para,transe_flag){
	var str_html = "";
	str_html += "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='"+location.protocol+"//download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0'";
	if(f_width != "")
		str_html += " width='"+f_width+"'";
	if(f_height != "")
		str_html += " height='"+f_height+"'";
	str_html += " id='"+f_id+"'>";
	//str_html += "<param name='autosize' value='true'>";
	str_html += "<param name='quality' value='high'>";
 	str_html += "<param name='menu' value='false'>";
	str_html += "<param name='allowscriptaccess' value='always'/>";
	str_html += "<param name='movie' value='"+f_url+"'>";
	if(transe_flag)
		str_html += "<param name='wmode' value='transparent'>";
	str_html += "<param name='flashvars' value='"+f_para+"'>";
	str_html += "<embed src='"+f_url+"' quality='high' pluginspage='"+location.protocol+"//www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash'";
	if(f_width != "")
		str_html += " width='"+f_width+"'";
	if(f_height != "")
		str_html += " height='"+f_height+"'";
	if(transe_flag)
		str_html += " wmode='transparent'";
	str_html += " allowScriptAccess='always' showLiveConnect='true' flashvars='"+f_para+"' name='"+f_id+"'></embed>";
	str_html += "</object>";
	return str_html;
}


