function dropdownnavi(form){
  var URL = document.dropdown.dd_item.options[document.dropdown.dd_item.selectedIndex].value;
  if (URL != ""){
    window.location.href = URL;
  }
}

function PrintVersion(URL){
   NewWindow = window.open(URL,"TITEL","scrollbars=yes,width=450,height=500,menubar=yes,locationbar=no,status=no,resizable=yes,dependent=yes");
   NewWindow.focus();
}

// Copyright TYPO3
function xmaixl(s) {
 var n=0;
 var r="";
 for(var i=0;i<s.length;i++)
 {
  n=s.charCodeAt(i);
  if (n>=8364) {n = 128;}
  r += String.fromCharCode(n-4);
 }
 return r;
}

function linkto_xmailx(s) {
 location.href=xmaixl(s);
}