﻿function TodayPopup(){
window.open("http://db2.t.msn.com/nb-no/home.aspx","_blank","toolbar=no, location=yes, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=yes, width=555, height=450");
}

//function setHome(newURL)
//{
//if(!window.sidebar && window.external) {
//// IE Homepage
//   document.body.style.behavior='url(#default#homepage)';
//   document.body.setHomePage(newURL);

//}
//else {
//alert("Fungerer kun i Internet Explorer. Bruker du en annen nettleser kan du manuelt sette MSN som startside");
//}
//}

function setHomepage() {
    if (document.all) {
        document.body.style.behavior = 'url(#default#homepage)';
        document.body.setHomePage('http://no.msn.com/');

    }
    else if (window.sidebar) {
        if (window.netscape) {
            try {
                netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
            }
            catch (e) {
                alert("this action was aviod by your browser，if you want to enable，please enter about:config in your address line,and change the value of signed.applets.codebase_principal_support to true");
            }
        }
        var prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components.interfaces.nsIPrefBranch);
        prefs.setCharPref('browser.startup.homepage', 'http://no.msn.com/');
    }
}

function CreateBookmarkLink(newTitle,newURL) {
title = newTitle;
url = newURL;
if (window.sidebar) {
// Mozilla Firefox Bookmark
window.sidebar.addPanel(title, url,"");
} else if( window.external ) {
// IE Favorite
window.external.AddFavorite( url, title);
}
else if(window.opera && window.print) {
// Opera Hotlist
return true; }
}