function switchTabTo(tabItem) {
  document.location.replace(tabItem + ".html");
}

function switchTabToPHP(tabItem) {
  document.location.replace(tabItem + ".php");
}

function switchTabToParameter(tabItem) {
  document.location.replace("index.php?article_id=" + tabItem);
}

