<!--//POPUP
 
  
   function popup(breite, hoehe, ziel){
    var _popwidth = breite;
    var _popheight = hoehe;
    _xpos = (screen.width - _popwidth) / 2;
    _ypos = (screen.height - _popheight) / 2;
    var _eigenschaften = "width=" + _popwidth + ",height=" + _popheight + ", menubar=no, left=" + _xpos  + ",top=" + _ypos + ", resizable=yes, scrollbars=yes";
    _popup = window.open(ziel,"popup",_eigenschaften);
    _popup.focus();
   }

//ENDE POPUP


  // Dropdown
  function Go(ix,tld) {
   var regex = new RegExp(tld);
   
   if(ix == "nothing") {
     document.forms[0].reset();
     document.forms[0].elements[0].blur();
     return;
   }
   else if(ix == "end")
     window.href = window.location;
   else {
     window.location.href = window.location.href.replace(regex, ix);
     document.forms[0].reset();
     document.forms[0].elements[0].blur();
   }
  }
  // Ende Dropdown
  


  //-->