function flashObj(fileName, width, height, id, flashvar){
        document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+width+'" height="'+height+'" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" id="'+id+'">'
        +'<param name="movie" value="'+fileName+'">'
        +'<param name="quality" value="high">'
        +'<param name="wmode" value="transparent">'
		+'<param name="flashVars" value="'+flashvar+'">'
        +'<param name="allowScriptAccess" value="always" />'
        +'<embed src="'+fileName+'" quality="high" flashVars="'+flashvar+'" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" width="'+width+'" height="'+height+'" type="application/x-shockwave-flash" showLiveConnect="true" name="'+id+'" allowScriptAccess="always"></embed>'
        +'</object>');
}

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 + "');");
}

/**
 * ÇÃ·¡½Ã ³Ö´Â ¹®ÀÚ¿­
 * f_id = ÇÃ·¡½Ã ¾ÆÀÌµð
 * f_name = ÇÃ·¡½Ã ÆÄÀÏ¸í
 * f_width = °¡·ÎÅ©±â
 * f_height = ¼¼·Î³ôÀÌ
 * f_para = ÆÄ¶ó¹ÌÅÍ
*/
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='http://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='http://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;
}