if(navigator.userAgent.indexOf("MSIE") > -1){ //Internet Explorer
var str = location.href;

document.write('<!-'+'-[if IE]>');
document.write('<input type="image" src="/common/img/btn/favorite_d.jpg"  value="お気に入りに追加"');
document.write(' onclick="window.external.AddFavorite(str,\'サイト名\')">');
document.write('<![endif]-'+'->');
}else if(navigator.userAgent.indexOf("Firefox") > -1){ //Firefox
var str = location.href;
document.write('<input type="image" src="/common/img/btn/favorite_d.jpg" value="ブックマークに追加"');
document.write(' onclick="window.sidebar.addPanel(\'サイト名\', str ,\'\');">');
}else if(navigator.userAgent.indexOf("Opera") > -1){ //Opera
document.write('<a href="' + str + '" rel="sidebar" title="サイト名">ブックマークに追加</a>');
}
else { //該当なし
var str = location.href;
document.write('<a href="#" title="お気に入りに追加" onclick="Modalbox.show(\'<dl><dt>URL：<br /><span>\' + str + \'</span></dt><dd>URLをコピーしてお気に入りに追加することで、現在表示している物件やページを再度表示させることができます。</dd></dl>\', {title: this.title, height: 150 }); return false;"><img src="/common/img/btn/favorite_d.jpg" alt="お気に入りに追加" width="140" height="21" /></a>');
}

