// Funktion für das wechseln zwischen adressen verschiedenes vereine
function linksmenu()
{
var number = document.linksform.menu.selectedIndex;
location.href=document.linksform.menu.options[number].value;
}

//funktionen für fremdlinks ausschreibungen
function jumpboxaus(){
var thebox=document.framecomboaus
newwindow=window.open("")
newwindow.location=thebox.framecomboaus1.options[thebox.framecomboaus1.selectedIndex].value
thebox.framecomboaus1.selectedIndex = 0;
}

//funktionen für fremdlinks ergebnisse
function jumpboxerg(){
var thebox=document.framecomboerg
newwindow=window.open("")
newwindow.location=thebox.framecomboerg1.options[thebox.framecomboerg1.selectedIndex].value
thebox.framecomboerg1.selectedIndex = 0;
}

function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}