/* ---------------------------------------------------------
    ¸Þ´º Ãâ·Â

    LAST UPDATE : 2009.08.15
    CREATER     : [HG]ErrorDa
    MAIL TO     : hespnk@hanmail.net

    IE7.0¿¡¼­ Å×½ºÆ® µÈ ÄÚµåÀÔ´Ï´Ù.
    ¼Ò½ºÄÚµå¿¡ ´ëÇÏ¿©´Â ºÒÆß±ÝÁöÀÔ´Ï´Ù.
    »ç¿ëÀ» ¿øÇÏ½Ã´Â ºÐÀº À§ÀÇ ¸ÞÀÏ·Î ¿¬¶ôÁÖ¼¼¿ä.
--------------------------------------------------------- */

//---------------------------------------------
// TOP ¸Þ´º Ãâ·Â
//---------------------------------------------
function fun_drawMenu( obj )
{
    var inHTML = "";

    inHTML += ("<table border=1 cellpadding=0 cellspacing=0 width=1000 bgcolor=#000000 bordercolor=#000000>");
    inHTML += ("<tr>");
    inHTML += ("<td class=MNU_TEXT>&nbsp;<span class=RED><b>M</b></span>abinogi - <b>S</b>imulator since. 2006</td>");
    inHTML += ("<td class=MNU_H_TEXT align=center width=60 id='MENU0' ");
    inHTML += ("onmouseover='this.style.cursor=\"hand\"' ");
    inHTML += ("onclick='fun_displaySub(0)'");
    inHTML += (">Ã³À½</td>");
    inHTML += ("<td class=MNU_TEXT align=center width=14>|</td>");
    inHTML += ("<td class=MNU_TEXT align=center width=60 id='MENU1' ");
    inHTML += ("onmouseover='this.style.cursor=\"hand\"' ");
    inHTML += ("onclick='fun_displaySub(1)'");
    inHTML += (">A¡¤P</td><td>");
    inHTML += ("<div id='sub1' style='position:relative;display:none;padding-top:0;margin-top:0;z-index:4'>");
    inHTML += ("</div></td>");
    inHTML += ("<td class=MNU_TEXT align=center width=14>|</td>");
    inHTML += ("<td class=MNU_TEXT align=center width=60 id='MENU2' ");
    inHTML += ("onmouseover='this.style.cursor=\"hand\"' ");
    inHTML += ("onclick='fun_displaySub(2)'");
    inHTML += (">°³Á¶</td><td>");
    inHTML += ("<div id='sub2' style='position:relative;display:none;padding-top:0;margin-top:0';z-index:4>");
    inHTML += ("</div></td>");

    inHTML += ("<td class=MNU_TEXT align=center width=14>|</td>");
    inHTML += ("<td class=MNU_TEXT align=center width=60 id='MENU4' ");
    inHTML += ("onmouseover='this.style.cursor=\"hand\"' ");
    inHTML += ("onclick='fun_displaySub(4)'");
    inHTML += (">Etc</td><td>");
    inHTML += ("<div id='sub4' style='position:relative;display:none;padding-top:0;margin-top:0';z-index:4>");
    inHTML += ("</div></td>");

    inHTML += ("<td class=MNU_TEXT align=center width=14>|</td>");
    inHTML += ("<td class=MNU_TEXT align=center width=60 id='MENU3' ");
    inHTML += ("onmouseover='this.style.cursor=\"hand\"' ");
    inHTML += ("onclick='fun_displaySub(3)'");
    inHTML += (">°Ô½ÃÆÇ</td>");

    inHTML += ("</tr>");
    inHTML += ("</table>");

    obj.innerHTML = inHTML;
}

//---------------------------------------------
// ¸ÞÀÎÃ¢¿¡ µé¾î°¥ ¹è°æÀÌ¹ÌÁö ·£´ýÀ¸·Î ¾ò±â
// (Æ®·¡ÇÈ ¹®Á¦·Î »ç¿ëÇÏÁö ¾Ê´Â´Ù.)
//---------------------------------------------
function fun_randBgImage( type )
{
    var bkImg = "";
    var imgList1 = Array("morrighan.jpg","nao_a.jpg","nao_b.jpg","rua.jpg","succubus_a.jpg","succubus_b.jpg","nao_c.jpg");
    var imgList2 = Array("Nao.jpg");

    if( type == 1)
    {
        while( bkImg == "" )
        {
            bkImg = imgList1[Math.floor((Math.random() * (imgList1.length)))];
        }
    }
    if( type == 2)
    {
        while( bkImg == "" )
        {
            bkImg = imgList2[Math.floor((Math.random() * (imgList2.length)))];
        }
    }

    return bkImg;
}

//---------------------------------------------
// ¹«±â°³Á¶ÀÇ ¼­ºê¸Þ´º ¿­±â
//---------------------------------------------
function open_sub(nNum)
{
    var obj = "wpRow" + nNum;

    div_DrChoice.style.visibility = "hidden";

    eval(obj).style.visibility = "visible";
    fnSetFrameBack(obj);
}

//---------------------------------------------
// ¹«±â°³Á¶ÀÇ ¼­ºê¸Þ´º ´Ý±â
//---------------------------------------------
function close_sub(nNum)
{
    eval("wpRow" + nNum).style.visibility = "hidden";
    fnResetFrameBack();
}

//---------------------------------------------
// TOP¸Þ´º ¼±ÅÃ½Ã »ó¼¼¼±ÅÃ
//---------------------------------------------
function fun_displaySub( val )
{
    div_DrChoice.style.visibility = "hidden";

    // ¼±ÅÃµÈ TOP¸Þ´ºÀÇ ÇÏÀÏ¶óÀÌÆ®
    for(var nLoop=0; nLoop<5; nLoop++)
    {
        if( val == nLoop )
        {
            eval("MENU" + nLoop).className = "MNU_H_TEXT";
        }
        else
        {
            eval("MENU" + nLoop).className = "MNU_TEXT";
        }
    }

    // »ó¼¼¼±ÅÃ ¸Þ´º ¹× ¼­ºê¸Þ´º Ãâ·Â
    switch( val )
    {
        case 0 :
        {
            sub1.style.display = "none";
            sub2.style.display = "none";
            sub4.style.display = "none";
            JS_LoadFirst(fs_form);
        }
        break;

        case 1 :
        {
            sub1.style.display = "";
            sub2.style.display = "none";
            sub4.style.display = "none";
            fun_subLoad1();
            JS_LoadAP(0, fs_form);              // µðÆúÆ® - ÀÎ°£ AP
        }
        break;

        case 2 :
        {
            sub1.style.display = "none";
            sub2.style.display = "";
            sub4.style.display = "none";
            fun_subLoad2();
            JS_LoadItem(102,0,fs_form);         // µðÆúÆ® - ´Ü°Ë °³Á¶
        }
        break;

        case 3 :
        {
            sub1.style.display = "none";
            sub2.style.display = "none";
            sub4.style.display = "none";
            JS_LoadBoard(fs_form);
        }
        break;

        case 4 :
        {
        	sub1.style.display = "none";
        	sub2.style.display = "none";
        	sub4.style.display = "";
        	fun_subLoad4();
        }
        break;
    }
}

//---------------------------------------------
// AP ¸Þ´ºÀÇ »ó¼¼¸Þ´º Ãâ·Â
//---------------------------------------------
function fun_subLoad1()
{
    var inHTML = "";

    inHTML += "<table border=0 cellpadding=0 cellspacing=0 align=right>";
    inHTML += "<tr>";
    inHTML += "<td width=80>";
    inHTML += "<a href='#01' class=SUB_MENU onclick='blur();JS_LoadAP(0, fs_form)'>¡¡ÀÎ°£ &nbsp; </a></td>";
    inHTML += "<td width=80>";
    inHTML += "<a href='#02' class=SUB_MENU onclick='blur();JS_LoadAP(1, fs_form)'>¡¡¿¤ÇÁ &nbsp; </a></td>";
    inHTML += "<td width=80>";
    inHTML += "<a href='#03' class=SUB_MENU onclick='blur();JS_LoadAP(2, fs_form)'>ÀÚÀÌ¾ðÆ®&nbsp;</a></td>";
    inHTML += "</tr></table>";

    sub1.innerHTML = inHTML;
}

//---------------------------------------------
// °³Á¶ ¸Þ´ºÀÇ »ó¼¼¸Þ´º Ãâ·Â
//---------------------------------------------
function fun_subLoad2()
{
    var inHTML = "";
    var inDiv = "";

    inHTML += ("<table border=0 cellpadding=0 cellspacing=0 width=100%>");
    inHTML += ("<tr>");

    // µµ°Ë
    inHTML += ("<td width=60 class=NO_SPACE>");
    inHTML += ("<table border=0 cellpadding=0 cellspacing=0>");
    inHTML += ("<tr>");
    inHTML += ("<td width=50 class=SUB_MENU onmouseout='this.className=\"SUB_MENU\";close_sub(1);' ");
    inHTML += ("onmouseover='this.className=\"SUB_H_MENU\";open_sub(1);this.style.cursor=\"hand\";'>µµ°Ë<br>");
    inHTML += ("<div style='position:absolute;visibility:hidden;z-index:4' id='wpRow1'>");
    inHTML += ("<table border=0 cellspacing=0 cellpadding=0>");
    inHTML += ("<tr><td class=NO_SPACE valign=top>");
    inHTML += ("<table border=0 cellspacing=0 cellpadding=0 bgcolor=#444444>");
    inHTML += ("<tr><td class=NO_SPACE>");
    inHTML += ("<table cellspacing=1 cellpadding=0 border=0 width=120>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#01' onclick='blur();JS_LoadItem(102,0,fs_form)' class=POP_MENU>&nbsp;´Ü°Ë &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#02' onclick='blur();JS_LoadItem(110,0,fs_form)' class=POP_MENU>&nbsp;´õÅ© &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#19' onclick='blur();JS_LoadItem(115,0,fs_form)' class=POP_MENU>&nbsp;½Ã¹ÌÅÍ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#04' onclick='blur();JS_LoadItem(104,0,fs_form)' class=POP_MENU>&nbsp;¼ô¼Òµå &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#05' onclick='blur();JS_LoadItem(105,0,fs_form)' class=POP_MENU>&nbsp;ÇÃ·çÆ®¼ô¼Òµå &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#06' onclick='blur();JS_LoadItem(109,0,fs_form)' class=POP_MENU>&nbsp;³ëºí¼Òµå &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#16' onclick='blur();JS_LoadItem(113,0,fs_form)' class=POP_MENU>&nbsp;¹èÆ²¼ô¼Òµå &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#11' onclick='blur();JS_LoadItem(202,0,fs_form)' class=POP_MENU>&nbsp;ÅõÇÚµðµå¼Òµå &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#12' onclick='blur();JS_LoadItem(201,0,fs_form)' class=POP_MENU>&nbsp;Å¬·¹ÀÌ¸ð¾î &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#13' onclick='blur();JS_LoadItem(203,0,fs_form)' class=POP_MENU>&nbsp;µå·¡°ïºí·¹ÀÌµå &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#20' onclick='blur();JS_LoadItem(204,0,fs_form)' class=POP_MENU>&nbsp;´õ½ºÆ¾½Ç¹ö³ªÀÌÆ® &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#21' onclick='blur();JS_LoadItem(212,0,fs_form)' class=POP_MENU>&nbsp;ÀÍ½ºÅ¥¼Å³Ê½º¼Òµå &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#22' onclick='blur();JS_LoadItem(213,0,fs_form)' class=POP_MENU>&nbsp;¼º¿ùÀÇ °Ë&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("</table></td></tr></table></td>");
    inHTML += ("<td width=1 bgcolor=#000000><hr color=#000000></td>");
    inHTML += ("<td class=NO_SPACE valign=top>");
    inHTML += ("<table border=0 cellspacing=0 cellpadding=0 bgcolor=#444444>");
    inHTML += ("<tr><td class=NO_SPACE>");
    inHTML += ("<table cellspacing=1 cellpadding=0 border=0 width=120>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#03' onclick='blur();JS_LoadItem(103,0,fs_form)' class=POP_MENU>&nbsp;¿¬½À¿ë¸ñµµ &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#17' onclick='blur();JS_LoadItem(114,0,fs_form)' class=POP_MENU>&nbsp;¹èÆ²¼Òµå &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#07' onclick='blur();JS_LoadItem(106,0,fs_form)' class=POP_MENU>&nbsp;·Õ¼Òµå &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#08' onclick='blur();JS_LoadItem(101,0,fs_form)' class=POP_MENU>&nbsp;ºê·Îµå¼Òµå &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#09' onclick='blur();JS_LoadItem(107,0,fs_form)' class=POP_MENU>&nbsp;±Û¶óµð¿ì½º &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#10' onclick='blur();JS_LoadItem(108,0,fs_form)' class=POP_MENU>&nbsp;¹Ù½ºÅ¸µå¼Òµå &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#14' onclick='blur();JS_LoadItem(111,0,fs_form)' class=POP_MENU>&nbsp;±×·¹ÀÌÆ®¼Òµå &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#20' onclick='blur();JS_LoadItem(116,0,fs_form)' class=POP_MENU>&nbsp;¹ß·¹½º±×·¹ÀÌÆ®¼Òµå </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#15' onclick='blur();JS_LoadItem(112,0,fs_form)' class=POP_MENU>&nbsp;Å¬·¹¹ö &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#14' onclick='blur();JS_LoadItem(197,0,fs_form)' class=POP_MENU>&nbsp;¾ÆÀÌ½º¼Òµå &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#18' onclick='blur();JS_LoadItem(138,0,fs_form)' class=POP_MENU>&nbsp;ÁÖ½ÃÀÚÀÇ°Ë &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#19' onclick='blur();JS_LoadItem(117,0,fs_form)' class=POP_MENU>&nbsp;¿ö¼Òµå &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#23' onclick='blur();JS_LoadItem(118,0,fs_form)' class=POP_MENU>&nbsp;Å©¸®½ºÅ»¼Òµå &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("</table></td></tr></table></td></tr>");
    inHTML += ("</table></div></td></tr></table></td>");

    // µÐ±â
    inHTML += ("<td width=60 class=NO_SPACE>");
    inHTML += ("<table border=0 cellpadding=0 cellspacing=0>");
    inHTML += ("<tr>");
    inHTML += ("<td width=50 class=SUB_MENU onmouseout='this.className=\"SUB_MENU\";close_sub(2);' ");
    inHTML += ("onmouseover='this.className=\"SUB_H_MENU\";open_sub(2);this.style.cursor=\"hand\";'>µÐ±â<br>");
    inHTML += ("<div style='position:absolute;visibility:hidden;z-index:4' id='wpRow2'>");
    inHTML += ("<table border=0 cellspacing=0 cellpadding=0 bgcolor=#444444>");
    inHTML += ("<tr><td class=NO_SPACE>");
    inHTML += ("<table cellspacing=1 cellpadding=0 border=0 width=120>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#01' onclick='blur();JS_LoadItem(131,0,fs_form)' class=POP_MENU>&nbsp;³ª¹«¸·´ë±â &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#02' onclick='blur();JS_LoadItem(132,0,fs_form)' class=POP_MENU>&nbsp;±½Àº³ª¹µ°¡Áö &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#03' onclick='blur();JS_LoadItem(133,0,fs_form)' class=POP_MENU>&nbsp;³ª¹«¸ùµÕÀÌ &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#04' onclick='blur();JS_LoadItem(134,0,fs_form)' class=POP_MENU>&nbsp;ÇØ¸Ó &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#05' onclick='blur();JS_LoadItem(135,0,fs_form)' class=POP_MENU>&nbsp;¸ÞÀÌ½º &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#06' onclick='blur();JS_LoadItem(136,0,fs_form)' class=POP_MENU>&nbsp;ÇÑ¼Õµµ³¢ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#07' onclick='blur();JS_LoadItem(137,0,fs_form)' class=POP_MENU>&nbsp;ºñÆæ´Ï½º &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#08' onclick='blur();JS_LoadItem(171,0,fs_form)' class=POP_MENU>&nbsp;¸ð´×½ºÅ¸ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#15' onclick='blur();JS_LoadItem(139,0,fs_form)' class=POP_MENU>&nbsp;¾ÆÀÌ¾ð¸ÞÀÌ½º &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#09' onclick='blur();JS_LoadItem(207,0,fs_form)' class=POP_MENU>&nbsp;¹èÆ²ÇØ¸Ó &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#10' onclick='blur();JS_LoadItem(210,0,fs_form)' class=POP_MENU>&nbsp;¿ö¸®¾î¾×½º &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#11' onclick='blur();JS_LoadItem(211,0,fs_form)' class=POP_MENU>&nbsp;ºê·Îµå¾×½º &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#12' onclick='blur();JS_LoadItem(206,0,fs_form)' class=POP_MENU>&nbsp;±×·¹ÀÌÆ®¸»·¿ &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#13' onclick='blur();JS_LoadItem(208,0,fs_form)' class=POP_MENU>&nbsp;½ºÆÄÀÌÅ©µå³ÊÅ¬ &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#14' onclick='blur();JS_LoadItem(209,0,fs_form)' class=POP_MENU>&nbsp;È©³×ÀÏ³ÊÅ¬ &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#16' onclick='blur();JS_LoadItem(172,0,fs_form)' class=POP_MENU>&nbsp;º£¾î³ÊÅ¬ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("</table></td></tr></table></div></td></tr></table></td>");

    // ¿ø°Å¸®
    inHTML += ("<td width=60 class=NO_SPACE>");
    inHTML += ("<table border=0 cellpadding=0 cellspacing=0>");
    inHTML += ("<tr>");
    inHTML += ("<td width=50 class=SUB_MENU onmouseout='this.className=\"SUB_MENU\";close_sub(3);' ");
    inHTML += ("onmouseover='this.className=\"SUB_H_MENU\";open_sub(3);this.style.cursor=\"hand\";'>¿ø°Å¸®<br>");
    inHTML += ("<div style='position:absolute;visibility:hidden;z-index:4' id='wpRow3'>");
    inHTML += ("<table border=0 cellspacing=0 cellpadding=0 bgcolor=#444444>");
    inHTML += ("<tr><td class=NO_SPACE>");
    inHTML += ("<table cellspacing=1 cellpadding=0 border=0 width=120>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#01' onclick='blur();JS_LoadItem(402,0,fs_form)' class=POP_MENU>&nbsp;¼ôº¸¿ì &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#02' onclick='blur();JS_LoadItem(401,0,fs_form)' class=POP_MENU>&nbsp;ÄÞÆ÷Áþº¸¿ì &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#05' onclick='blur();JS_LoadItem(405,0,fs_form)' class=POP_MENU>&nbsp;°¡µð¾ðº¸¿ì &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#09' onclick='blur();JS_LoadItem(406,0,fs_form)' class=POP_MENU>&nbsp;¿¤ºì¼ôº¸¿ì &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#10' onclick='blur();JS_LoadItem(407,0,fs_form)' class=POP_MENU>&nbsp;¿¤ºì·Õº¸¿ì &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#03' onclick='blur();JS_LoadItem(403,0,fs_form)' class=POP_MENU>&nbsp;·Õº¸¿ì &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#04' onclick='blur();JS_LoadItem(404,0,fs_form)' class=POP_MENU>&nbsp;·¹´õ·Õº¸¿ì &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#06' onclick='blur();JS_LoadItem(410,0,fs_form)' class=POP_MENU>&nbsp;¼®±Ã &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#07' onclick='blur();JS_LoadItem(411,0,fs_form)' class=POP_MENU>&nbsp;¸µº¸¿ì &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#08' onclick='blur();JS_LoadItem(412,0,fs_form)' class=POP_MENU>&nbsp;À®º¸¿ì &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("</table></td></tr></table></div></td></tr></table></td>");

    // ¿øµå
    inHTML += ("<td width=60 class=NO_SPACE>");
    inHTML += ("<table border=0 cellpadding=0 cellspacing=0>");
    inHTML += ("<tr>");
    inHTML += ("<td width=50 class=SUB_MENU onmouseout='this.className=\"SUB_MENU\";close_sub(4);' ");
    inHTML += ("onmouseover='this.className=\"SUB_H_MENU\";open_sub(4);this.style.cursor=\"hand\";'>¿øµå<br>");
    inHTML += ("<div style='position:absolute;visibility:hidden;z-index:4' id='wpRow4'>");
    inHTML += ("<table border=0 cellspacing=0 cellpadding=0 bgcolor=#444444>");
    inHTML += ("<tr><td class=NO_SPACE>");
    inHTML += ("<table cellspacing=1 cellpadding=0 border=0 width=120>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#01' onclick='blur();JS_LoadItem(901,5,fs_form)' class=POP_MENU>&nbsp;¾ÆÀÌ½º¿øµå &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#02' onclick='blur();JS_LoadItem(902,5,fs_form)' class=POP_MENU>&nbsp;ÆÄÀÌ¾î¿øµå &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#03' onclick='blur();JS_LoadItem(903,5,fs_form)' class=POP_MENU>&nbsp;¶óÀÌÆ®´×¿øµå &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#04' onclick='blur();JS_LoadItem(905,6,fs_form)' class=POP_MENU>&nbsp;Å©¶ó¿î¾ÆÀÌ½º¿øµå &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#05' onclick='blur();JS_LoadItem(904,6,fs_form)' class=POP_MENU>&nbsp;Å©¸®½ºÅ»¶óÀÌÆ®´× &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#06' onclick='blur();JS_LoadItem(906,6,fs_form)' class=POP_MENU>&nbsp;ÇÇ´Ð½ºÆÄÀÌ¾î¿øµå &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#07' onclick='blur();JS_LoadItem(907,6,fs_form)' class=POP_MENU>&nbsp;Æ¼Ä«³ª¹«Èú¸µ¿øµå &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#08' onclick='blur();JS_LoadItem(908,5,fs_form)' class=POP_MENU>&nbsp;Å¸°Ý¿ë¿øµå &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("</table></td></tr></table></div></td></tr></table></td>");

    // ½Ç¸°´õ
    inHTML += ("<td width=60 class=NO_SPACE>");
    inHTML += ("<table border=0 cellpadding=0 cellspacing=0>");
    inHTML += ("<tr>");
    inHTML += ("<td width=50 class=SUB_MENU onmouseout='this.className=\"SUB_MENU\";close_sub(8);' ");
    inHTML += ("onmouseover='this.className=\"SUB_H_MENU\";open_sub(8);this.style.cursor=\"hand\";'>½Ç¸°´õ<br>");
    inHTML += ("<div style='position:absolute;visibility:hidden;z-index:4' id='wpRow8'>");
    inHTML += ("<table border=0 cellspacing=0 cellpadding=0 bgcolor=#444444>");
    inHTML += ("<tr><td class=NO_SPACE>");
    inHTML += ("<table cellspacing=1 cellpadding=0 border=0 width=120>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#01' onclick='blur();JS_LoadItem(181,0,fs_form)' class=POP_MENU>&nbsp;±âº»½Ç¸°´õ &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#02' onclick='blur();JS_LoadItem(182,0,fs_form)' class=POP_MENU>&nbsp;¼Ó¼º½Ç¸°´õ &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("</table></td></tr></table></div></td></tr></table></td>");

    // »ýÈ°,µµ±¸
    inHTML += ("<td width=60 class=NO_SPACE>");
    inHTML += ("<table border=0 cellpadding=0 cellspacing=0>");
    inHTML += ("<tr>");
    inHTML += ("<td width=50 class=SUB_MENU onmouseout='this.className=\"SUB_MENU\";close_sub(5);' ");
    inHTML += ("onmouseover='this.className=\"SUB_H_MENU\";open_sub(5);this.style.cursor=\"hand\";'>»ýÈ°<br>");
    inHTML += ("<div style='position:absolute;visibility:hidden;z-index:4' id='wpRow5'>");
    inHTML += ("<table border=0 cellspacing=0 cellpadding=0 bgcolor=#444444>");
    inHTML += ("<tr><td class=NO_SPACE>");
    inHTML += ("<table cellspacing=1 cellpadding=0 border=0 width=120>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#01' onclick='blur();JS_LoadItem(191,0,fs_form)' class=POP_MENU>&nbsp;·ùÆ® &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#02' onclick='blur();JS_LoadItem(192,0,fs_form)' class=POP_MENU>&nbsp;¸¸µ¹¸° &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#03' onclick='blur();JS_LoadItem(193,0,fs_form)' class=POP_MENU>&nbsp;¿ìÅ¬·¼·¹ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#04' onclick='blur();JS_LoadItem(196,0,fs_form)' class=POP_MENU>&nbsp;³¬½Ë´ë &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#05' onclick='blur();JS_LoadItem(301,0,fs_form)' class=POP_MENU>&nbsp;Ã¤Áý¿ë´Ü°Ë &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#06' onclick='blur();JS_LoadItem(303,0,fs_form)' class=POP_MENU>&nbsp;Ã¤Áý¿ëµµ³¢ &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#07' onclick='blur();JS_LoadItem(304,0,fs_form)' class=POP_MENU>&nbsp;³´ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#08' onclick='blur();JS_LoadItem(305,0,fs_form)' class=POP_MENU>&nbsp;È£¹Ì &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#09' onclick='blur();JS_LoadItem(302,0,fs_form)' class=POP_MENU>&nbsp;°î±ªÀÌ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#10' onclick='blur();JS_LoadItem(150,0,fs_form)' class=POP_MENU>&nbsp;´ëÀåÀåÀÌ¸ÁÄ¡ &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("</table></td></tr></table></div></td></tr></table></td>");

    // ¹æ¾î±¸
    inHTML += ("<td width=60 class=NO_SPACE>");
    inHTML += ("<table border=0 cellpadding=0 cellspacing=0>");
    inHTML += ("<tr>");
    inHTML += ("<td width=50 class=SUB_MENU onmouseout='this.className=\"SUB_MENU\";close_sub(6);' ");
    inHTML += ("onmouseover='this.className=\"SUB_H_MENU\";open_sub(6);this.style.cursor=\"hand\";'>¹æ¾î±¸<br>");
    inHTML += ("<div style='position:absolute;visibility:hidden;z-index:4' id='wpRow6'>");
    inHTML += ("<table border=0 cellspacing=0 cellpadding=0 bgcolor=#444444>");
    inHTML += ("<tr><td class=NO_SPACE>");
    inHTML += ("<table cellspacing=1 cellpadding=0 border=0 width=120>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#01' onclick='blur();JS_LoadItem(601,2,fs_form)' class=POP_MENU>&nbsp;Ãµ¿Ê·ù &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#02' onclick='blur();JS_LoadItem(701,3,fs_form)' class=POP_MENU>&nbsp;°æ°©·ù &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#03' onclick='blur();JS_LoadItem(801,4,fs_form)' class=POP_MENU>&nbsp;Áß°©·ù  &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#04' onclick='blur();JS_LoadItem(501,1,fs_form)' class=POP_MENU>&nbsp;¶ó¿îµå½Çµå &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#05' onclick='blur();JS_LoadItem(502,1,fs_form)' class=POP_MENU>&nbsp;Ä«ÀÌÆ®½Çµå &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#06' onclick='blur();JS_LoadItem(503,1,fs_form)' class=POP_MENU>&nbsp;¶óÀÌÆ®ÇìÅ×·Î½Çµå &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#07' onclick='blur();JS_LoadItem(504,1,fs_form)' class=POP_MENU>&nbsp;ÇìÅ×·ÎÄ«ÀÌÆ®½Çµå &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#08' onclick='blur();JS_LoadItem(505,1,fs_form)' class=POP_MENU>&nbsp;µå·¡°ï½Çµå &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#09' onclick='blur();JS_LoadItem(506,1,fs_form)' class=POP_MENU>&nbsp;ÁÖ½ÃÀÚÀÇ¹æÆÐ &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#10' onclick='blur();JS_LoadItem(507,1,fs_form)' class=POP_MENU>&nbsp;È÷ÅÍ½Çµå &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#11' onclick='blur();JS_LoadItem(508,1,fs_form)' class=POP_MENU>&nbsp;Æ¼Ä«½Çµå &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#12' onclick='blur();JS_LoadItem(509,1,fs_form)' class=POP_MENU>&nbsp;¹ß·¹½º½Çµå &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#13' onclick='blur();JS_LoadItem(510,1,fs_form)' class=POP_MENU>&nbsp;ÄÞÆ÷Áþ½Çµå &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("</table></td></tr></table></div>");
    inHTML += ("</td></tr></table></td>");

    inHTML += ("</tr>");
    inHTML += ("</table>");

    sub2.innerHTML = inHTML;
}



//---------------------------------------------
// ETC ¸Þ´ºÀÇ »ó¼¼¸Þ´º Ãâ·Â
//---------------------------------------------
function fun_subLoad4()
{
    var inHTML = "";

    inHTML += ("<table border=0 cellpadding=0 cellspacing=0>");
    inHTML += ("<tr>");
    inHTML += ("<td width=60 class=NO_SPACE>");

    inHTML += ("<table border=0 cellpadding=0 cellspacing=0>");
    inHTML += ("<tr>");
    inHTML += ("<td width=50 class=SUB_MENU onmouseout='this.className=\"SUB_MENU\";close_sub(7);' ");
    inHTML += ("onmouseover='this.className=\"SUB_H_MENU\";open_sub(7);this.style.cursor=\"hand\";'>&nbsp;Skill&nbsp;<br>");
    inHTML += ("<div style='position:absolute;visibility:hidden;z-index:4' id='wpRow7'>");
    inHTML += ("<table border=0 cellspacing=0 cellpadding=0 bgcolor=#444444>");
    inHTML += ("<tr><td class=NO_SPACE>");
    inHTML += ("<table cellspacing=1 cellpadding=0 border=0 width=120>");
    inHTML += ("<tr bgcolor=#222222 onmouseover='this.style.background=\"#000000\"' onmouseout='this.style.background=\"#222222\"'>");
    inHTML += ("<td height=20><a href='#01' onclick='blur();JS_LoadMMLPlay(fs_form)' class=POP_MENU>&nbsp;±âº»¿¬ÁÖ°î &nbsp; &nbsp; &nbsp; &nbsp; </a></td></tr>");
    inHTML += ("</table></td></tr></table></div></td></tr></table></td>");

    inHTML += ("</tr>");
    inHTML += ("</table>");

    sub4.innerHTML = inHTML;
}