var pintaNoticies = function(){
	var open = Ext.get('finestraNoticies');  
	if (open == null){   
		var win = new Ext.Window({
		                id: 'finestraNoticies',
		                title: "Noticias",   // lit_membres.js
		                width:350,
		                height:480,
		        	  	x:Ext.getCmp('contenidor').getSize().width - 380,
		        	  	y:100,
		                activeTab:0,
		                iconCls: 'noticies',
		                shim:false,
		                animCollapse:false,
		                border:false,
		                constrainHeader:true,
		                resizable:false,
		                autoLoad:"noticies/noticies.php"
		 			});
		        win.show();
		}else{
			Ext.Msg.alert(JLI_ERROR_Oops, JLI_ERROR_Finestra_oberta);
		}
}

