var prefix = "D_";
var sprache = "D";

if(window.location.search != "")
{
 //alert(window.location.search);
 var uriParam = window.location.search;
 var uriArray = uriParam.split("=");
 var sprache = uriArray[1];
 if (sprache == "D")
 {
 	//alert("Sprache = Deutsch");
   prefix = "D_";
 }
 else if (sprache == "E")
 {
 	//alert("Sprache = Englisch");
   prefix = "E_";
 }
 else if (sprache == "F")
 {
 	//alert("Sprache = Französisch");
   prefix = "F_";
 }
 else
 {
 	//alert("Sprache nicht gefunden - Default deutsch");
   prefix = "D_";
 }
}

function getLanguage()
{
  return "?rq_sprache=" + sprache;
}

function getSprache()
{
 return sprache;
}
