function goToUrl(form_naam, filter_naam) {
    url = document.forms[form_naam].elements[filter_naam].options[document.forms[form_naam].elements[filter_naam].selectedIndex].value;
    location.href = url;
}

function goToUrlNewWin(form_naam, filter_naam) {
    url = document.forms[form_naam].elements[filter_naam].options[document.forms[form_naam].elements[filter_naam].selectedIndex].value;
    window.open(url);
}

function NewWindow(mypage, myname, w, h, t, l, 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(); }
}
//NewWindow(this.href,'Byelex','600','660','10','10','yes')

///* banner links to new browser tab-window */
$(document).ready(function() {

    $(".banner a:[href*='http']").click(function(e){
        e.preventDefault();

        window.open(this.href);
        return false;
    });
});
