function DisplayMenu(index) {
        for (i=1; i<=5; i++) //탭메뉴 갯수에 따라 i<=3 이 숫자 맞게 수정해줘야 오류가 안남
        if (index == i) {
        thisMenu = eval("menu" + index + ".style");
        thisMenu.display = "";
        } 
        else {
        otherMenu = eval("menu" + i + ".style"); 
        otherMenu.display = "none"; 
        }
        }
