 set_account = function(id,ob){
	if(ob.innerHTML =='Click here to DEACTIVATE'){
		new Ajax.Request('/users/active', {
			onComplete:function(){
				$('active-sate-loading-indicator').hide();
				ob.innerHTML ='Click here to ACTIVATE';
			},
			onLoading:function(request, json){
				$('active-sate-loading-indicator').show();
			},
			parameters:  'state=0&id='+id}); 	
	} else {
		
		new Ajax.Request('/users/active', {
			onComplete:function(){
				ob.innerHTML ='Click here to DEACTIVATE'
				$('active-sate-loading-indicator').hide();
			},
			onLoading:function(request, json){
				$('active-sate-loading-indicator').show();
			},
			parameters:  'state=1&id='+id}); 	
	}
	
}