function redirect(url) {
  document.location.href = url;
}

function cacher(id) {
  document.getElementById(id).style.display = 'none';
}

function afficher_nouvelle_cat(id) {
  document.getElementById('nouvelle_cat').style.display = 'block';
  document.getElementById('champ_cat').style.display = 'none';
}

function afficher_nouvelle_scat(id) {
  document.getElementById('nouvelle_scat').style.display = 'block';
  document.getElementById('champ_scat').style.display = 'none';
}

function rouge(obj) {
  obj.style.backgroundColor = 'red';
}

function blanc(obj) {
  obj.style.backgroundColor = 'white';
}
