function toggle(theId) {
  if (document.getElementById) {
    var part = document.getElementById(theId).style;
    if (part.display == "block") {
      part.display = "none";
    } else {
      part.display = "block";
    } 
    return false;
  } else {
    return true;
  }
}

