var PanneauNouveaute = new Ext.TabPanel(
					{
      				applyTo        : 'hello-tabs',
      				autoTabs       : true,
      				activeTab      : 0,
            		deferredRender : false,
                  	border         : false
                });	
	
var FenetreInfosNouveautes = new Ext.Window(
	{
				iconCls : 'information',
				applyTo     : 'hello-win',
      		layout      : 'fit',
      		width       : 500,
      		height      : 200,
      		closeAction :'hide',
      		plain       : true,
      		items       : PanneauNouveaute
				/*,
            buttons: [
					{
               	text     : 'Valider',
                  disabled : true,
						hidden : true
                },
					 {
                  text     : 'Fermer',
                  handler  : function(){win.hide();}
                }]*/
       });

function ShowWindow()
{
	FenetreInfosNouveautes.show();
}