function getlanguage(){
language=navigator.language;
url="http://www.tiller.eu/";
if(language){language=language.substring(0,2);}
else{language="z";}
switch (language){
   case "en" :
      window.location=url+"./EN/index.html";
      break;
   case "de" :
      window.location=url+"./DE/index.html";
      break;
   case "fr" :
      window.location=url+"./FR/index.html";
      break;
    case "nl" :
      window.location=url+"index.html";
      break;
	case "es" :
      window.location=url+"./ES/index.html";
      break;
	case "it" :
      window.location=url+"./IT/index.html";
      break;
	case "da" :
      window.location=url+"./DA/index.html";
      break;
   default :
	  window.location=url+"./EN/index.html";
}
}
