// JavaScript Document
    /***
     * 現在閲覧しているページをお気に入りに追加
     * （Internet Explore のみで動作）
     */
    function myFavorite(){
        var agent=navigator.userAgent;
        var ie=agent.indexOf("MSIE");
        var iever=parseInt(agent.substring(ie+5, ie+6));
        var os=agent.indexOf("Windows");

        if((ie > 0) && (iever >= 5) && (os > 0) && !window.opera){
            var bookmarkURL=self.location; /* window.location.hrefでもOK */
            var bookmarkTITLE=document.title;
            window.external.AddFavorite(bookmarkURL, bookmarkTITLE);
        }else{
            alert("IEのみでサポートされています");
        }
    }
