diff --git a/modules/layout/tpl/js/layout_admin.js b/modules/layout/tpl/js/layout_admin.js
index 13b0a8f3b..d7738e5eb 100644
--- a/modules/layout/tpl/js/layout_admin.js
+++ b/modules/layout/tpl/js/layout_admin.js
@@ -13,3 +13,14 @@ function doDeleteLayout(layout_srl) {
procFilter(fo_obj, delete_layout);
}
+
+/* 메뉴 관리로 이동 */
+function doMenuManagement(menu_id) {
+ var fo_obj = xGetElementById("fo_layout");
+ var sel_obj = fo_obj[menu_id];
+ if(sel_obj.selectedIndex == 0) return;
+ var menu_srl = sel_obj.options[sel_obj.selectedIndex].value;
+
+ var url = location.href.setQuery('act','dispMenuAdminManagement').setQuery('menu_srl',menu_srl);
+ location.href = url;
+}
diff --git a/modules/layout/tpl/layout_modify.html b/modules/layout/tpl/layout_modify.html
index b80e7cd9d..a6664fa1b 100644
--- a/modules/layout/tpl/layout_modify.html
+++ b/modules/layout/tpl/layout_modify.html
@@ -73,6 +73,7 @@
+
diff --git a/modules/menu/tpl/menu_management.html b/modules/menu/tpl/menu_management.html
index adaf23c4c..6154ba301 100644
--- a/modules/menu/tpl/menu_management.html
+++ b/modules/menu/tpl/menu_management.html
@@ -13,23 +13,37 @@
-
-
- | {$lang->title} |
-
-
- |
-
-
- | {$lang->menu_management} |
- {nl2br($lang->about_menu_management)} |
-
-
+
+
+
+ | {$lang->title} |
+
+
+ |
+
+
+ | {$lang->menu_management} |
+ {nl2br($lang->about_menu_management)} |
+
+
+
+
+