function  menu(zap) {
  if (!document.getElementById) return;
  var abra=document.getElementById(zap).style;
  if (abra.display=="none") {
    abra.display="block";
  } else {
    abra.display ="none";
  }
}

function init( ignore ) {
  //hide submenus
  if (!document.getElementById) return;
  var i = 0 ;
  var listitem;  
  while( listitem = document.getElementById( 'XMLNU' + i ) ) {
    if( i != ignore ) listitem.style.display="none";
    i++;
  }
}

