function doSearch(Language) {
  var query = document.forms[0].suchfeld.value;
  if(query != "")
    document.location.href = "../ContentKey/HUZN-6N7GLL-" + Language + "?Open&Query=*" + query + "*"
  return false;
}
function switchLanguage (aktuellLang, targetLang) {
  if (targetLang != "#") {
    var newURL = document.URL.replace("-"+aktuellLang,"-"+targetLang);
    document.location.href=newURL;
  }
}
function PopUp(URLLink, Width, Height) {
  
  if (Width == null) Width = 650;
  if (Height == null) Height = 500;
  status = '';
  winprops = "'width=" + eval(Width) + ",height=" + eval(Height) + ",top=10,left=10,scrollbars=yes,resizable=yes,menubar=no,toolbar=no,status=no'";
  win = window.open(URLLink, "PopUp", eval(winprops));
  win.focus();
     
}

