| Author: John.meng(цот╤РШ)  2006-1-8 15:09:01                        
  +----------------------------------------------------------------------+
*/
/* $Id: SiteMenu.php,v 1.2 2006/01/15 07:02:57 arzen Exp $ */
if (empty($__Version__)) {
    echo "Big error! ";
    exit;
}
include_once "ModuleConfig.php";
include_once "SiteMenu.class.php";
$thisObj = new SiteMenu();
switch ($_REQUEST['Action']) {
    case 'UserList':
        $thisObj->viewList();
        break;
    case 'Add':
        $thisObj->opAdd();
        break;
    case 'Update':
        $thisObj->opAdd();
        break;
    case 'Cancel':
        $thisObj->opCancel();
        break;
    case 'CancelSelected':
        $thisObj->opCancelSelected();
        break;
    default:
        $thisObj->viewList();
        break;
}