function cache_formexpress(theid) {
    var monid = id(theid);    
    if(monid) monid.style.display = "none";
}
function montre_formexpress(theid) {
    var monid = id(theid);    
    if(monid) monid.style.display = "block";
}

function init_formexpress() {
  // cache_formexpress('formrecherchelogiciel');
  // cache_formexpress('formrechercheformation');
}

window.onload = function () {
  init_formexpress();
};