/* (c) Jean Luc Biellmann - Groupe Ressources - 2010  */

var _Usr = {
	setActive : function (email,cb) {
		_JSON.send('m=adm&c=Usr&f=jsonSetActive&email='+email+'&value='+(cb.checked ? 1 : 0),{
			url: 'index.php?json=true&',
			formId: '',
			onSuccess : function (json) {
				if (json.jsonSetActive) {
					alert('Opération effectuée');
				}
			}
		});
	},	
	resetTry : function (email,b) {
		_JSON.send('m=adm&c=Usr&f=jsonResetTry&email='+email,{
			url: 'index.php?json=true&',
			formId: '',
			onSuccess : function (json) {
				if (json.jsonResetTry) {
					b.value = json.nb;
					alert('Nombre de jetons réinitialisés');
				}
			}
		});
	}	
};

