/*
 * Ext JS Library 2.2
 * Copyright(c) 2006-2008, Ext JS, LLC.
 * licensing@extjs.com
 * 
 * http://extjs.com/license
 */
 
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       : 370,
      		height      : 150,
      		closeAction :'hide',
      		plain       : true,
      		items       : PanneauNouveaute
				/*,
            buttons: [
					{
               	text     : 'Valider',
                  disabled : true,
						hidden : true
                },
					 {
                  text     : 'Fermer',
                  handler  : function(){win.hide();}
                }]*/
       });

function ShowWindow()
{
	FenetreInfosNouveautes.show();
}