Ext.onReady(function(){
						
						//
						var win9;
						var button = Ext.get('market1');
						button.on('click', function(){
														// create the window on the first click and reuse on subsequent clicks
														if(!win9){
																	win9 = new Ext.Window({
																							//layout: 'fit',
resizable: false,
autoHeight: true,
modal:true,




																							title: 'Inserisci anche i tuoi prodotti nel Market di incidere.com',
																							closeAction: 'hide',
																							width:400,
																							height:400,
																							//x: 40,
																							//y: 60,
																							items: {
																									xtype: 'panel',
																									region: 'center',
																									autoLoad : {
																												url : 'js/win_market1.php',
																												text : "Caricamento ...",
																												scripts : true
																											}
																									}
																							
																						});
																	}
														win9.show();
													});
						
						
 });

