/////////////////////////////////////////////////////////////////////////////////////////////////
/***************************************** ÇÃ·¡½ÃÈ£Ãâ ******************************************/
/////////////////////////////////////////////////////////////////////////////////////////////////
function swf_obj(src,w,h,swfid){
	swf_html = '';
	swf_html += '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+w+'" height="'+h+'" id="'+swfid+'">';
	swf_html += '<param name="allowScriptAccess" value="always">';
	swf_html += '<param name="movie" value="'+src+'">';
	swf_html += '<param name="quality" value="high">';
	swf_html += '<param name="bgcolor" value="#FFFFFF">';
	swf_html += '<PARAM NAME="wmode" VALUE="transparent">';
	swf_html += '<embed src="'+src+'" quality="high" bgcolor="#FFFFFF" width="'+w+'" height="'+h+'" name="'+swfid+'" allowScriptAccess="always" wmode="transparent" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">';
	swf_html += '</object>';
	document.write(swf_html);
}

/////////////////////////////////////////////////////////////////////////////////////////////////
/******************************************** µµ¿ò¸» *******************************************/
/////////////////////////////////////////////////////////////////////////////////////////////////

function disp_div(div_name,xmouse,ymouse)
{
	help_divwid = parseInt(document.getElementById(div_name).style.width,10);
	if(document.body.clientWidth > (help_divwid+xmouse+15))
	{
		document.getElementById(div_name).style.left = document.body.scrollLeft + xmouse + 10;
		document.getElementById(div_name).style.top = document.body.scrollTop + ymouse;
	}else{
		document.getElementById(div_name).style.left = (document.body.scrollLeft + xmouse) - (help_divwid+10);
		document.getElementById(div_name).style.top = document.body.scrollTop + ymouse;
	}
	document.getElementById(div_name).style.visibility = "visible";
}

function show_div(div_name)
{
	document.getElementById(div_name).style.visibility = "visible";
}

function hide_div(div_name)
{
	document.getElementById(div_name).style.visibility = "hidden";
}