Ext.onReady(function(){

    Ext.get('mb1').on('click', function(){
        Ext.MessageBox.show({
           title: 'Nouvelle Catégorie',
           msg: '<form method="post" action="">Nom de la catégorie :<br/><input class="input" type="text" name="nvlcategorie" id="nomrubrique" maxlength="35" /><br/><input type="radio" name="type" value="1" checked="checked"/> Articles<input type="radio" name="type" value="2" /> Photos<input type="radio" name="type" value="3" /> Vidéos<input type="radio" name="type" value="4" /> Page simple<br/><p style="text-align:center"><input class="submit" type="submit" value="Créer" /></p></form>',
           width:400,
           animEl: 'mb1'
       });
    });
});