function AddBookmark(title, url) {
    if (window.sidebar) {
        //mozilla way to do it
        window.sidebar.addPanel(title, url,"");
    } else if(document.all) {
        //MSIE way to do it
        window.external.AddFavorite(url, title);
    } else {
        //other
        alert('Je browser ondersteunt deze functie niet, voeg ons handmatig toe aan uw favorieten.');
    }
}

