function addFav (par){
        if (document.all  && !window.opera) {
             if (typeof window.external == "object") {
                window.external.AddFavorite (document.location, document.title);
                return true;
              }
              else return false;

        }
        else{
            par.href=document.location;
            par.title=document.title;
            par.rel = "sidebar";
            return true;
        }
    }
