// JavaScript Document



function bookmark(){
    if(navigator.userAgent.indexOf("MSIE") > -1){ //Internet Explorer
    window.external.AddFavorite(document.location.href,'格安国内旅行オリオンツアー');
    }
    
    else if(navigator.userAgent.indexOf("Firefox") > -1){ //Firefox
    window.sidebar.addPanel('格安国内旅行オリオンツアー',document.location.href,'');
    }
    
    else if(navigator.userAgent.indexOf("Opera") > -1){ //Opera
    document.write('<a href="' + document.location.href + '" rel="sidebar" title="格安国内旅行オリオンツアー">ブックマークに追加</a>');
    }
    
    else { //該当なし
//  void(0); //何もしない
        alert('お使いのブラウザには対応しておりません。');
    }
}
