function onClickChangeLangauge(obj)
{
   var myId = obj.id;
   if (myId == "se") {
      document.location.href = "index.html";
   }
   else if (myId == "gb") {
      document.location.href = "index_en.html";
   }
   else if (myId == "de") {
      document.location.href = "index_de.html";
   }
   else if (myId == "ln") {
      document.location.href = "index_nl.html";
   }
   
}
