

function leftmenu(depth1,depth2) {

        //ÁÖ¸Þ´º ¸µÅ© ÁÖ¼Ò
        depth1_link = new Array();
        depth1_link[0] = "D3_1.htm";
        depth1_link[1] = "D3_2.htm";
        depth1_link[2] = "D3_3.htm";
		depth1_link[3] = "D3_4.htm";
		depth1_link[4] = "D3_5.htm";
		depth1_link[5] = "D3_6.htm";
		depth1_link[6] = "D3_7.htm";

		

       
		document.write("<table width='219' border='0' cellspacing='0' cellpadding='0'>");
		document.write("<tr>"); 
		document.write("<td width='200' align='left'><img src='image/g_topimg1.gif' width='219' height='27'></td>");
		document.write("</tr>");
		document.write("<tr>"); 
		document.write("<td align='left'><img src='image/g_m_ttl.gif' width='200' height='51'></td>");
		document.write("</tr>");
		document.write("<tr>"); 
		document.write("<td align='left' valign='top' background='../image/g_left_mbg.gif'>"); 
		document.write("<table width='200' border='0' cellspacing='0' cellpadding='0'>");


        //ÁÖ¸Þ´º
        for( i = 1 ; i <= depth1_link.length ; i++ )
        {

                if(i != 7) { //

                        document.write("<tr><td>");
                        document.write("<a href=");
                        document.write(depth1_link[i-1]);
                        document.write(" onfocus=this.blur()>");
																										
                        if(depth1 != i) document.write("<img onmouseover=\"this.src='image/m_0"+i+"on.gif'\" onmouseout=\"this.src='image/m_0"+i+"off.gif'\" src=image/m_0"+i);
                        else document.write("<img src=image/m_0"+i);
                        //¼±ÅÃ¸Þ´º½Ã È°¼º/ºñÈ°¼º
                        if(depth1 == i) document.write("on");
                        else document.write("off");
                        document.write(".gif border=0>");
                        document.write("</a>");
                        document.write("</td></tr>");

                   

                }
        }//ÁÖ¸Þ´º ³¡        
  
document.write("</table>");
document.write("</td>");
document.write("</tr>");
document.write("</table>");

}

