function switchContent(id1, id2) {
  document.getElementById(id1).style.display = "none";
  document.getElementById(id2).style.display = "block";
//  activeItem.style.display = (activeItem.style.display == "none") ? "block" : "none";
  
}
