function toggleForgottenPassword() {    
    if (document.getElementById("forgotPassword").style.display == "none" ) {
        document.getElementById("forgotPassword").style.display = "block";
    }
    else {
        document.getElementById("forgotPassword").style.display = "none";
    }
}


function popupXtraFM(theUrl) {
    window.open(theUrl, "XtraFM", "toolbar=0,title=0,width=700,height=590,directories=0,resizable=0,status=no,scrollbars=0, menubar=0,location=0")
}

function SunFM(theUrl) {
    window.open(theUrl, "SunFM", "toolbar=0,title=0,width=700,height=590,directories=0,resizable=0,status=no,scrollbars=0, menubar=0,location=0")
}

function toggleRegioSelectie() {
   
    if (document.getElementById("regioSelectie").style.display == "block") {
        document.getElementById("regioSelectie").style.display = "none";
    }
    else {
        document.getElementById("regioSelectie").style.display = "block";
    }
}

