 winCV = function(insegnante) {
    
    this.Insegnante = insegnante;
                  
    winCV.superclass.constructor.call(this, {
        width: 850,
        //height: 600,
        auhoHeight: true,
        collapsible: true,
        collapsed: true,
        bodyStyle: 'padding: 10px',
        autoScroll: true,
        title: 'Vedi curriculum'
    });
}

Ext.extend(winCV, Ext.Panel, {
    init: function() {
            this.render("cv_" + this.Insegnante);
        this.load({
            url: './cv/' + this.Insegnante + '.html',
            scope: this,
            text: 'Loading...',
            scripts: false
        });
    }
});
