<!--
var ie  = navigator.userAgent.indexOf("MSIE ");
var verIE = 0, winIE = -1;
if(ie >= 0) {
    verIE = parseFloat(navigator.userAgent.substr(ie + 5));
    winIE = navigator.userAgent.indexOf("Windows");
}

function addFav () {
    if(verIE >= 5.0 && winIE >= 0)
        window.external.AddFavorite(location.href,
            document.title);
    else
        alert("このブラウザーでは追加できません。");
}
//-->
