function mainFlashEmbed(fid,fn,wd,ht,para)
{
 document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="' + wd + '" height="' + ht + '" id="' + fid + '" align="middle">');
 document.write('<param name="allowScriptAccess" value="sameDomain">');
 document.write('<param name="movie" value="' + fn + para + '">');
 document.write('<param name="quality" value="high">');
 document.write('<param name="wmode" value="opaque">');
 document.write('<param name="scale" value="noscale" />');
 document.write('<param name="salign" value="lt" />');
 document.write('<embed src="' + fn + para + '" menu="false" quality="high" wmode="opaque" width="' + wd + '" height="' + ht + '" name="' + fid + '" align="middle" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
 document.write('</object>');
}


function FlashEmbed(fid,fn,wd,ht,para)
{
 document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="' + wd + '" height="' + ht + '" id="' + fid + '" align="middle">');
 document.write('<param name="allowScriptAccess" value="sameDomain">');
 document.write('<param name="movie" value="' + fn + para + '">');
 document.write('<param name="quality" value="high">');
 document.write('<param name="wmode" value="transparent">');
 document.write('<embed src="' + fn + para + '" menu="false" quality="high" wmode="transparent" width="' + wd + '" height="' + ht + '" name="' + fid + '" align="middle" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
 document.write('</object>');


}

//½ºÅ©·Ñ Å¾¹öÆ°
function scrollLayer() 
		{ 
		    var top_point, start_point, end_point, timer; 
		
		    var obj_layer   = document.getElementById('Qmn'); 
		
		    top_point   = obj_layer.style.top;
		    start_point = parseInt(top_point, 0); 
		    end_point   = document.body.scrollTop + 570; 
		    limit_point = parseInt(window.document.body.scrollHeight) - parseInt(obj_layer.offsetHeight) - 75; 
		
		    if ( end_point > limit_point )  end_point = limit_point; 
		    if ( end_point < top_point )    end_point = top_point; 
		
		    if ( start_point != end_point ) 
		    { 
		        scroll_amount = Math.ceil( Math.abs( end_point - start_point ) / 15 ); 
		        obj_layer.style.top = parseInt(top_point, 0) + ( ( end_point < start_point ) ? -scroll_amount : scroll_amount ); 
		    } 
		
		    timer = setTimeout ("scrollLayer('Qmn', 0);", 1); 
} 

//FAQ 
 var previd = null;

    function displaySub(subID)
	{
        if (previd != null)
		{
			if (previd != subID)
			{
			    previd.style.display = "none";
			}
		}

		if (subID.style.display == "none")
		{
			subID.style.display = "block";
		}
		else
		{
			subID.style.display = "none";
		}

		previd = subID;
        //titleID.style.bold = true;


}

//»õÃ¢¿­±â
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}