

function setLanguage(language) {
    var myPath = new String(document.URL);
    var myPath2;
    if (myPath == "http://merano.independent.it/" || myPath == "http://merano.independent.it/") myPath2 = myPath + language + "/";
    else myPath2 = myPath.replace(/\/..\//, "/" + language + "/");
    if (myPath2 == myPath) myPath2 = myPath.replace(/http:\/\/merano\.independent\.it/, "http://merano.independent.it/"+language);
    window.location.href = myPath2;
    return false;
}