function jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function mergeEmail (mailuser,mprovider) { 
  // ergibt den String "mailto:<user>@<domain>"
  // den Link setzen: <a href="javascript:;" onclick="mergeEmail('<mailuser>','<mprovider>')">
  var mtotal='mailto:' + mailuser + String.fromCharCode(64) + mprovider;
  document.location.href = mtotal;
}

function showwin(URL,WI,HI)
{
//FensterNeu = window.open(URL, 'Anzeigefenster', 'width='+WI+',height='+HI+',location=no,menubar=yes,directories=no,toolbar=yes,scrollbars=yes,resizable=yes,status=no');
  FensterNeu = window.open(URL, 'Anzeigefenster','location=no,menubar=yes,directories=no,toolbar=no,scrollbars=yes,resizable=yes,status=no');
  FensterNeu.focus();
}

// Öffnet ein Fenster für die Druckvorschau
function MM_openBrWindow(theURL,winName,features) { //v2.0 
  FensterMM = window.open(theURL,winName,features); 
  FensterMM.focus();
}
