﻿window.moveTo(0, 0);
window.resizeTo(window.screen.width, window.screen.height - 30);

function TwoMenuDySelect(allMenu, CurMenu) {
    var MenuList = allMenu.toString().split(",");
    for (var i = 0; i < MenuList.length; i++) {
        var obj = window.document.getElementById(MenuList[i]);
        obj.style.visibility = "hidden";
    }
    if (CurMenu.toString().length > 0) {
        var obj = window.document.getElementById(CurMenu);
        obj.style.visibility = "visible";
    }
}
