function afficherCalque(id, etat)
{
    var calque = document.getElementById(id);  
    if (calque != null)
        calque.style.display = (etat) ? 'block' : 'none';
}

function selectionnerOption(name, iSel)
{
    var radio = document.getElementsByName(name);
    if (radio != null)
        for (var i = 0; i < radio.length; i++)
            radio[i].checked = iSel == i;
}
