
// ¸ÞÀÎ ¸Þ´º¿¡ ´ëÇÑ ½ºÅ©¸³Æ®

function look_subMenu(number) {
    var num = number.toString();
    eval("TobSubMenu" + num).style.display = "block";
}

function dispose_subMenu(number) {
    var num = number.toString();
    eval("TobSubMenu" + num).style.display = "none";
}

function Window_Popup(url, name, width, height, isScrollbars, isResizable) {
    var result = null;

    var left = (screen.width - width) / 2;
    var top = (screen.height - height) / 3;

    var result = window.open(url, name, "left=" + left + ",top=" + top + ",width=" + width + ",height=" + height + ",toolbar=no,menubar=no,scrollbars=" + isScrollbars + ",resizable=" + isResizable);
    if (result == null) return true;

    result.focus();
}
