function show(section) {
  var profile = document.getElementById(section);
  if (profile.style.height != "auto")
    profile.style.height = "auto";
  else
    profile.style.height = "1px";
}