﻿var _MainPopup = new Array();

function AddPopup(idx, title, width, height, scroll, left, top, win_Center) {
    var obj = new Object();
    obj.IDX = idx;
    obj.Title = title;
    obj.Width = width;
    obj.Height = height;
    obj.Scroll = scroll;
    obj.Left = left;
    obj.Top = top;
    obj.center = win_Center;
    
    _MainPopup.push(obj);
}

