Ext.namespace('fcbm.model');

fcbm.model.Compteurs = function(key){
	
	Ext.Ajax.request({
		url: 'maj_compteurs.jsp',
		scope: this,
		success: function () {},
		failure: function () { throw ("Error updating access count."); },
		params: {key: key}
	});
	
};

