/*
 * Ext JS Library 2.2.1
 * Copyright(c) 2006-2009, Ext JS, LLC.
 * licensing@extjs.com
 * 
 * http://extjs.com/license
 */

Ext.onReady(function(){
    var win;
    var button = Ext.get('show-btn');

    button.on('click', function(){
        // create the window on the first click and reuse on subsequent clicks
        if(!win){
            win = new Ext.Window({
                applyTo     : 'hello-win',
                layout      : 'fit',
                width       : 500,
                height      : 555,
                closeAction :'hide',
                plain       : true,
                items       : new Ext.TabPanel({
                    applyTo: 'hello-tabs',
					activeTab: 0,
					width:600,
					height:250,
					plain:true,
					defaults:{autoScroll: true},
					items:[{
							title: 'Contacta con nosotros',
            			    autoLoad:'contacto_multibox.php'
							},{
							title: 'żEres proveedor?',
							autoLoad:'contacto_provedores.php'
						}]}),

                /*buttons: [{
                    text     : 'Cerrar',
                    handler  : function(){
                        win.hide();
                    }
                }]*/
            });
        }
        win.show(button);
    });
});