function expandDiv(tahw) {
  what  = tahw + "_menu"
  where = tahw + "_table"
  gotox  = tahw + "_link"
  if (document.getElementById(what).style.display == "none") {
    document.getElementById(what).style.display = "";	
  } else {
    document.getElementById(what).style.display = "none";
  }
}


