// JavaScript Document
function coche_users_appartient_groupe(container, id_groupe)
{
    var rows = document.getElementById(container).getElementsByTagName('input');
    var checkbox;
	var cpt = 0;
    while (cpt < rows.length)
	{
        checkbox = rows[cpt];
        if(checkbox && checkbox.type == 'checkbox')
		{
			tab = checkbox.id.split('-');
			nb_groupes = tab.length;
			cmpt = 0;
			while(cmpt < nb_groupes)
			{
				if(tab[cmpt] == id_groupe)
				{
					checkbox.checked = true;
				}
				cmpt = cmpt + 1;
			}
        }
		cpt = cpt + 1;
    }
	return true;
}
