function getCookie(name) {
  var prefix = name + "="
  var cookieStartIndex = document.cookie.indexOf(prefix)
  if (cookieStartIndex == -1)
    return null
  var cookieEndIndex = document.cookie.indexOf(";", cookieStartIndex + prefix.length)
  if (cookieEndIndex == -1)
    cookieEndIndex = document.cookie.length
  return unescape(document.cookie.substring(cookieStartIndex + prefix.length, cookieEndIndex))
}

function LoadLang()
{
  var lang = "eng";
  var fontsize= "0";
  if (getCookie('TilimaticLangu')) lang = getCookie('TilimaticLangu');
  if (lang == 'ger') window.location.replace('ger/frontpage.html');
  if (lang == 'eng') window.location.replace('eng/frontpage.html');
  if (lang == 'swe') window.location.replace('swe/frontpage.html');
  if (lang == 'fin') window.location.replace('frontpage.html');
}

function LoadIndex()
{
  window.location.replace('../index.html');
}
