function RedirectURL(linkalt)
 {
  var aktuell = window.location.href;
  var Nummer;
  switch(linkalt)
{

 case "deu":
  	{
		window.location.href = "index.html";
  	}
 break;

 case "eng":
 {
		window.location.href = linkalt + ".html";
  }
 break;

 case "fra":
  {
		window.location.href = linkalt + ".html";
  }
 break;

 case "print":
  {
	window.print();
  }
 break;

 case "sitemap":
  {
		window.location.href = linkalt + ".html";
  }
 break;

 }

 }

