function bookmarksite(){if(document.all){ window.external.AddFavorite(location.href,document.title);}else if(window.sidebar){ window.sidebar.addPanel(document.title,location.href,"");}}

function showTimeZone() {
    var timeZone = document.getElementById("timeZoneDiv");
    timeZone.style.visibility = "visible";
}

function hideTimeZone() {
    var timeZone = document.getElementById("timeZoneDiv");
    timeZone.style.visibility = "hidden";
}

function getTheme(idx) {
    for (i=0; (a = document.getElementsByTagName("link")[i]); i++) {
        if (a.id.indexOf("itheme") > -1) {
            var path = a.href.substring(0, a.href.indexOf("css/Themes")) + 
                       "css/Themes/" + idx + ".css";
            a.href = path;
        }
    }
    var url = "InterfaceThemeHandler.ashx";
    var paras = "ThemeId=" + idx;
    getAjaxResponse(url, paras, 0);    
}
