function addCookie()
{
    if (document.all)
       {
         window.external.addFavorite('http://www.uslawchina.com','美國法律聯營網');
       }
      else if (window.sidebar)
      {
          window.sidebar.addPanel('美國法律聯營網', 'http://www.uslawchina.com', "");
    }
}

function setHomepage()
{
if (document.all)
    {
        document.body.style.behavior='url(#default#homepage)';
       document.body.setHomePage('http://www.uslawchina.com');

    }
    else if (window.sidebar)
    {
    if(window.netscape)
    {
         try
   { 
            netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect"); 
         } 
         catch (e) 
         { 
   alert( "該操作被流覽器拒絕，如果想啟用該功能，請在位址欄內輸入 about:config,然後將項 signed.applets.codebase_principal_support 值該為true" ); 
         }
    } 
    var prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components. interfaces.nsIPrefBranch);
    prefs.setCharPref('browser.startup.homepage','http://www.uslawchina.com');
}
}

