function pourthie_show(div) {
   document.getElementById(div).style.display = 'block';
}

function pourthie_hide(div) {
   document.getElementById(div).style.display = 'none'
}