function Sanction(membre)
{
	var bloc_cible = 'sanction';

	affichage = '<fieldset><legend>Sanction</legend><span class="rouge">Vous vous apprêtez à sanctionner un membre, veillez à spécifier le motif de cette sanction.</span><br /><br />Motif de la sanction : <input type="text" name="motif" value="Motif"/><br /><br /><input type="radio" id="sanction2" onclick="dureeSanction(); annulerSanctionNiveau();" name="sanction" value="ecriture"/> Interdiction d\'écriture <br /><div id="duree"></div><br /><input type="radio" name="sanction" onclick="niveauSanction(); annulerSanctionDuree();" value="activation_infraction"/> Sanctionner par infraction <br /> <div id="niveau"></div><br /><br /></fieldset>';
	
	document.getElementById(bloc_cible).innerHTML = affichage; 
}

function Ban(membre)
{
	var bloc_cible = 'bannissement';

	affichage = '<fieldset><legend>Bannir</legend>Bannir le membre :<br /><br /><textarea name="justification_ban">Expliquez ici les raisons de la décision.</textarea><br /><br /><input type="submit" name="ban" value="Bannir le membre"/></fieldset>';
	
	document.getElementById(bloc_cible).innerHTML = affichage;
}

function dureeSanction()
{
	var bloc_cible = 'duree';
	affichage = '<br /><input type="text" size="2" name="duree1"/> <select name="duree2"><option value="">Durée</option><option value="jours">Jours</option><option value="mois">Mois</option></select> <input type="submit" value="Ok"/>';
	document.getElementById(bloc_cible).innerHTML = affichage;
}

function annulerSanctionDuree()
{
	var bloc_cible = 'duree';
	affichage = '';
	document.getElementById(bloc_cible).innerHTML = affichage;
}

function niveauSanction()
{
	var bloc_cible = 'niveau';
	affichage = '<br />Infraction : <select name="infraction"><option value="">Infraction</option><option value="10">10 %</option><option value="20">20 %</option><option value="30">30 %</option><option value="40">40 %</option><option value="50">50 %</option><option value="60">60 %</option><option value="70">70 %</option><option value="80">80 %</option><option value="90">90 %</option><option value="100">100 %</option></select> <input type="submit" value="Ok"/>';
	document.getElementById(bloc_cible).innerHTML = affichage;
}

function annulerSanctionNiveau()
{
	var bloc_cible = 'niveau';
	affichage = '';
	document.getElementById(bloc_cible).innerHTML = affichage;
}




