function montre(id) {
if (document.getElementById) {
document.getElementById(id).style.display="block";
} else if (document.all) {
document.all[id].style.display="block";
} else if (document.layers) {
document.layers[id].display="block";
}
}

function cache(id) {
if (document.getElementById) {
document.getElementById(id).style.display="none";
} else if (document.all) {
document.all[id].style.display="none";
} else if (document.layers) {
document.layers[id].display="none";
}
}

function color(id, col, bot) {
if (document.getElementById) {
document.getElementById(id).style.backgroundColor=col;
document.getElementById(id).style.color="#D3D502";
document.getElementById(id).style.border.bottom=bot;
} else if (document.all) {
document.all[id].style.backgroundColor=col;
document.all[id].style.color="#D3D502";
document.all[id].style.border.bottom=bot;
} else if (document.layers) {
document.layers[id].backgroundColor=col;
document.layers[id].color="#D3D502";
document.layers[id].border.bottom=bot;
}
}

function colorlien(id, col) {
if (document.getElementById) {
document.getElementById(id).style.color=col;
} else if (document.all) {
document.all[id].style.color=col;
} else if (document.layers) {
document.layers[id].color=col;
}
}