﻿var AboutHikkyWeb = function()
{
}

AboutHikkyWeb.prototype.showAbout = function()
{
    var win = new Ext.Window({
        id: "About",
        title: "HikkyWebについて",
        width: 800,
        height: 520,
        closable: true,
        modal: true,
        layout: "fit",
        items: new Ext.TabPanel({
            autoTabs: true,
            activeTab: 0,
            defaults: { autoScroll: true },
            deferredRender: true,
            items:
            [
            {
                id: "AboutHikkyWeb",
                title: "HikkyWebについて",
                autoLoad: "AboutHikkyWeb.aspx"
            },
            {    
                id: "UpdateHistory",
                title: "更新履歴",
                autoLoad: "UpdateHistory.aspx"
            }
            ]    
        })
    });
    win.show();
}

