function flash(url,w,h,id,bg,win,su){

	// ÇÃ·¡½Ã ÄÚµå Á¤ÀÇ
	var flashStr=
	"<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' width='"+w+"' height='"+h+"' id='"+id+"' align='middle'>"+
	"<param name='movie' value='"+url+"?pageNum="+su+"' />"+
	"<param name='wmode' value='"+win+"' />"+
	"<param name='menu' value='false' />"+
	"<param name='quality' value='high' />"+
	"<param name='bgcolor' value='"+bg+"' />"+
	"<embed src='"+url+"' wmode='"+win+"' menu='false' quality='high' bgcolor='"+bg+"' width='"+w+"' height='"+h+"' name='"+id+"' submenu='"+su+"' align='middle' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />"+
	"</object>";

	// ÇÃ·¡½Ã ÄÚµå Ãâ·Â
	document.write(flashStr);

}




<!-- 
if (window.Event) 
document.captureEvents(Event.MOUSEUP); 
function nocontextmenu(){ 
event.cancelBubble = true 
event.returnValue = false; 
return false; 
} 
function norightclick(e){ 
if (window.Event){ 
      if (e.which == 2 || e.which == 3) 
      return false; 
} 
else 
      if (event.button == 2 || event.button == 3){ 
       event.cancelBubble = true 
       event.returnValue = false; 
       return false; 
      } 
} 
document.oncontextmenu = nocontextmenu; // for IE5+ 
document.onmousedown = norightclick; // for all others 
//--> 


var omitformtags=["input", "textarea", "select"] 

omitformtags=omitformtags.join("|") 

function disableselect(e){ 
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1) 
return false 
} 

function reEnable(){ 
return true 
} 

if (typeof document.onselectstart!="undefined") 
document.onselectstart=new Function ("return false") 
else{ 
document.onmousedown=disableselect 
document.onmouseup=reEnable 
} 






//¹ö¶¯µ¼º½µÄ´úÂë


        var stmnLEFT = 500; // Scroll down the left side of the menu here. If there is no need to delete
        var stmnGAP1 = 366; // Page Header portion of the margin (it could not climb to that.)
        var stmnGAP2 = 100; // Lift top of the browser and scroll down slightly. If you do not need set to 0
        var stmnBASE = 366; // Early start scrolling menu location (Doctor Whatever differences to matter, but giving stmnGAP1 slightly better view)
        var stmnActivateSpeed = 200; // Detect the movement speed (late, I know that the larger the number fashionable)
        var stmnScrollSpeed = 10; // The scroll speed (Late larger movement)
        var stmnTimer;

        // Reading cookies
        function ReadCookie(name)
        {
                var label = name + "=";
                var labelLen = label.length;
                var cLen = document.cookie.length;
                var i = 0;

                while (i < cLen) {
                        var j = i + labelLen;

                        if (document.cookie.substring(i, j) == label) {
                                var cEnd = document.cookie.indexOf(";", j);
                                if (cEnd == -1) cEnd = document.cookie.length;

                                return unescape(document.cookie.substring(j, cEnd));
                        }
        
                        i++;
                }

                return "";
        }

        // Cookies store
        function SaveCookie(name, value, expire)
        {
                var eDate = new Date();
                eDate.setDate(eDate.getDate() + expire);
                document.cookie = name + "=" + value + "; expires=" +  eDate.toGMTString()+ "; path=/";
        }

        // The location scrolling menu renewal
        function RefreshStaticMenu()
        {
                var stmnStartPoint, stmnEndPoint, stmnRefreshTimer;

                stmnStartPoint = parseInt(STATICMENU.style.top, 10);
                stmnEndPoint = document.body.scrollTop + stmnGAP2;
                if (stmnEndPoint < stmnGAP1) stmnEndPoint = stmnGAP1;

                stmnRefreshTimer = stmnActivateSpeed;

                if ( stmnStartPoint != stmnEndPoint ) {
                        stmnScrollAmount = Math.ceil( Math.abs( stmnEndPoint - stmnStartPoint ) / 15 );
                        STATICMENU.style.top = parseInt(STATICMENU.style.top, 10) + ( ( stmnEndPoint<stmnStartPoint ) ? -stmnScrollAmount : stmnScrollAmount );
                        stmnRefreshTimer = stmnScrollSpeed;
                }

                stmnTimer = setTimeout ("RefreshStaticMenu();", stmnRefreshTimer);
        }

        // Menu ON / OFF for
        function ToggleAnimate()
        {
                if (document.all.ANIMATE.checked) { // If the button is checked move
                        RefreshStaticMenu(); // Adjust menu to relocate
                        SaveCookie("ANIMATE", "true", 300); // ON move is to set up a state cookie
                }
                else { // If not ... (Check if they are not moving the button)
                        clearTimeout(stmnTimer); // Disable the timer yidongyong
                        STATICMENU.style.top = stmnGAP1; // Move the position at the top of the menu.
                        SaveCookie("ANIMATE", "false", 300); // Go to a status of "OFF" Lim
                }
        }

        // Initialize Menu
        function InitializeStaticMenu()
        {
                if (ReadCookie("ANIMATE") == "false") { // If the state is moving off state
                        document.all.ANIMATE.checked = false; // Check clears
                        STATICMENU.style.top = document.body.scrollTop + stmnGAP1; // At the top of a stranger. Attached.
                }
                else { // If the state moves on
                        document.all.ANIMATE.checked = true; // Check marks and
                        STATICMENU.style.top = document.body.scrollTop + stmnBASE; // Go to the default location.
                        RefreshStaticMenu(); // Operations script
                }

                STATICMENU.style.left = stmnLEFT; // Initialize Menu left position. If there is no need to delete
        }


