// JavaScript Document
function en() {

var currentURL = window.location.href;

var splitter = currentURL.split("en/");

var newurl = "../en/" + splitter[1];


window.location.href=newurl;

}

function gr() {

var currentURL = window.location.href;

var splitter = currentURL.split("en/");

var newurl = "../gr/" + splitter[1];


window.location.href=newurl;
}