﻿function AddToFavorites() {
    var shortcutKey = "CTRL + D";
    if (window.sidebar) {
        window.sidebar.AddPanel("Utrecht Your Way", "http://www.utrechtyourway.nl", "");
    }
    if (window.external) {
        window.external.AddFavorite("http://www.utrechtyourway.nl", "Utrecht Your Way");
    }
    else {
        if (window.opera) {
            shortcutKey = "CTRL + T";
        }
        alert("Your browser does not support this function. Press " + shortcutKey + " to bookmark this page.");
    }
}