function setLanguageIt()

{
  var newUrl = window.location.href.replace("eng", "ita");
  window.location.href = newUrl;
}

function setLanguageEn()

{
  var newUrl = window.location.href.replace("ita", "eng");
  window.location.href = newUrl;
}