		function open_flash(src, width, height, flashvars)
		{
			var browser=window.navigator.userAgent;

			if (browser.indexOf("MSIE")!=-1) {
				document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.adobe.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0' width='"+width+"' height='"+height+"'><param name='movie' value='"+src+"' /><param name='play' value='true' /><param name='loop' value='true' /><param name='quality' value='best' /><param name='wmode' value='transparent' /><param name='FlashVars' value='"+flashvars+"' /></object>");
			} else {
				document.write("<object type='application/x-shockwave-flash' data='"+src+"' width='"+width+"' height='"+height+"' ><param name='play' value='true' /><param name='loop' value='true' /><param name='quality' value='best' /><param name='wmode' value='transparent' /><param name='FlashVars' value='"+flashvars+"' />");
			}
		}
/*
	flashvars´Â "a=°¡&b=³ª&c=´Ù ... " Çü½ÄÀ¸·Î ÀÔ·Â.
	ÇÃ·¡½Ã¿¡¼­ °ªÀ» È£Ãâ ÇÒ¶§´Â root.a, root.b, root.c ...
*/
/******ÇÃ·¡½Ã Ç¥½Ã******/


		function setPng24(obj) {
			obj.width=obj.height=1;
			obj.className=obj.className.replace(/\bpng24\b/i,'');
			obj.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+ obj.src +"',sizingMethod='image');"
			obj.src='';
			return '';
		}
/******[IE6] pngÆÄÀÏ Åõ¸íµµ Àû¿ë******/

		function move_Menu()
		{
			start = parseInt(document.getElementById("quick").style.top, 10);
			targetY = document.documentElement.scrollTop+top_point;
			limtY = parseInt(document.documentElement.scrollHeight) - parseInt(document.getElementById("quick").offsetHeight);

			if (targetY>limtY) {
				targetY = limtY;
			}

			if (targetY<30) {
				targetY = 30;
			}

			if (start != targetY) {
				amountY = Math.ceil(Math.abs(targetY-start)*speedY);
				document.getElementById("quick").style.top = start+((targetY<start) ? -amountY : amountY)+"px";
			}
			count1 = setTimeout("move_Menu();", 0);
		}
/*****************¿ìÃø Äü¸Þ´º ½ºÅ©·Ñ¸µ*******************/