Ext.onReady(function() {
					 
	Ext.get('bouton_contact').on('click', function(){
		var msg = Ext.get("msg");
		msg.load({
			url: ['script_form.php'], // <-- replace with your url
			params: "nom=" + Ext.get('nom').dom.value,
			text: "Updating..."
		});
		msg.show();
	});
	
	
	
});