var Aksspec = {
	_Deconnexion: function() {
		Modalbox.show('/membres/exit.php', {title: "Déconnexion", width: 400});
	},
	
	_ChooseService: function(el, soon) {
		if(!soon) Modalbox.show('<div class="notice_message">Désolé, ce service n\'est pas encore disponible.<br />Vous serez prévenu par mail lors de sa mise en ligne.<br /><br />Pour plus d\'information, vous pouvez<br />- visiter notre <a href="http://www.ezibox.fr/rep-produits.html" title="Fiches produits" onclick="window.open(this.href); return false;">site vitrine</a> <br />- joindre notre service technique via <a href="http://www.ezibox.fr/rep-contact.html" title="Contact" onclick="window.open(this.href); return false;">le formulaire de contact</a></div>', {title: "Information", width: 350});
		else 
		{
			if($(el).className == 'services_clicked') $(el).className = 'services';
			else $(el).className = 'services_clicked';

			if($$('.services_clicked').size() == 0) $('services_souscrits').hide();
			else $('services_souscrits').show();
		}
	},
	_ValidService: function() {
		Akssession._Kill('services_souscrits');
		
		$$('.services_clicked').each(function(el) {		
			Akssession._Add('services_souscrits', el.readAttribute('rel'));
		});
		
		location.href = '/rep-membres/rub-_subscribe.html';
	}
};
