function favorite() {

if(navigator.userAgent.indexOf("MSIE") > -1){ //Internet Explorer
document.write('<!-'+'-[if IE]>');
document.write('<input type="button" value="お気に入りに追加"');
document.write(' onclick="window.external.AddFavorite(\'http://www.nurse-happylife.com/\',\'看護師の給料っていくら？　|　看護師の転職相談所\')">');
document.write('<![endif]-'+'->');
}

else if(navigator.userAgent.indexOf("Firefox") > -1){ //Firefox
document.write('<input type="button" value="ブックマークに追加"');
document.write(' onclick="window.sidebar.addPanel(\'看護師の給料っていくら？　|　看護師の転職相談所\',\'http://www.nurse-happylife.com/\',\'\');">');
}

else if(navigator.userAgent.indexOf("Opera") > -1){ //Opera
document.write('<a href="http://www.nurse-happylife.com/" rel="sidebar" title="看護師の給料っていくら？　|　看護師の転職相談所">ブックマークに追加</a>');
}

else { //該当なし
void(0); //何もしない
}

}