<!--
  /**************************************************************************
  * File : menu_visibility.js
  * Description : 
  * 
  * Next Files : 
  * 
  * Writers history : 
  *  Christian Vallebella / Marjorie Lazaro
  * Last modification : 2004/07/19 (iut_toulon v.1)
  **************************************************************************/
  
function showResponse(id) {
  if (document.getElementById(id)) {
    if (document.getElementById(id).style.display != 'none') {
      document.getElementById(id).style.display='none';
    } else {
      document.getElementById(id).style.display='inline';
    }
  }
}

-->
