function showAbout() {
    var aboutContent = new Ext.Template(
        '<img src="{imagePath}/logo-gvcollege.png" />',
        '<p class="about-line">',
            '<b>GVcollege Versão {versao}</b>',
            '<br />&copy; 2004-{anoAtual} GVDASA Sistemas. Todos os direitos reservados. ',
            'GVcollege e logotipos GVcollege são marcas comerciais da GVDASA Sistemas. Todos os direitos reservados.',
        '</p>',
        '<h4>Bibliotecas utilizadas</h4>',
        '<p>',
            '<b>ADODB</b> - Biblioteca de abstração de dados',
            '<br />Licença <a href="http://www.gnu.org/licenses/gpl.html">GPL</a>',
        '</p>',
        '<p>',
            '<b>ExtJS</b> - Framework de desenvolvimento JavaScript',
            '<br />Licença <a href="http://extjs.com/license">Comercial</a>',
        '</p>',
        '<p>',
            '<b>FCKeditor</b> - Editor de textos para web',
            '<br />Licenças <a href="http://www.gnu.org/licenses/gpl.html">GPL 2+</a>, ',
            '<a href="http://www.gnu.org/licenses/lgpl.html">LGPL 2.1+</a> e <a href="http://www.mozilla.org/MPL/MPL-1.1.html">MPL 1.1+</a>',
        '</p>',
        '<p>',
            '<b>TCPDF</b> - Biblioteca para geração de PDF',
            '<br />Licença <a href="http://www.gnu.org/licenses/lgpl.html">LGPL 2.1</a>',
        '</p>',
        '<p>',
            '<b>Chart</b> - Biblioteca para exibição de gráficos com canvas',
            '<br />Licença <a href="http://eae.net/license/mit">MIT</a>',
        '</p>',
        '<p class="about-line">',
            '<b>webtoolkit</b> - Biblioteca JavaScript para funções diversas',
            '<br />Licença <a href="http://creativecommons.org/licenses/by/2.0/uk/">Creative Commons Attribution 2.0</a>',
        '</p>',
        '<p style="text-align: center;">',
            '<img src="{imagePath}/logo-gvdasa.png" style="margin-right: 22px;" />',
            '<img src="{imagePath}/logo-cmmi.png" style="margin-right: 20px;" />',
            '<img src="{imagePath}/logo-microsoft-gold.png" />',
        '</p>'
    );

    var aboutWindow = new Ext.Window({
        title      : 'Sobre o Sistema',
        layout     : 'fit',
        width      : 400,
        plain      : true,
		modal      : true,
		resizable  : false,
        closeAction: 'close',

        items: [{
            cls      : 'about-content',
            border   : false,
            bodyStyle: 'padding: 5px 8px; background-color: #fbffff;',
            html     : aboutContent.apply({
                imagePath: GVutils.basepath+'/resource/imagens',
                versao   : GVutils.version,
                anoAtual : (new Date()).getFullYear()
            })
        }],

        buttons: [{
           text     : 'Fechar',
           handler  : function(){
               aboutWindow.close();
           }
        }]
    });

    aboutWindow.show();
}

