
<!-- Popup Fenster
function new_window2(fenster,width,height) {
    win2=window.open("",fenster,"resizable=yes,status=no,scrollbars=yes,toolbar=no,menubar=no,width="+width+",height="+height); }
// End -->

<!-- Pulldown Navigation Start
function formHandler(pulldown){
var URL = document.pulldown.site.options[document.pulldown.site.selectedIndex].value;
window.location.href = URL;
}
// End -->

<!-- Erste Buchstabe Gross 

function machGross(hand)
    { 
      var wertalt = hand;
      rest = wertalt.slice(1);
      neu = wertalt.substring(0,1);
      neu = neu.toUpperCase();
      wertneu = neu.concat(rest);
    } 

// End -->
