if (navigator.userAgent.indexOf("MSIE") > -1) {
  // IE
  document.write('<input type="image" src="/images/btn_bookmark.gif" border="0" alt="ブックマークする"');
  document.write(' onclick="window.external.AddFavorite(location, document.title);" />');
//} else if(navigator.userAgent.indexOf("Firefox") > -1) {
//  // Firefox
//  document.write('<input type="image" src="/images/btn_bookmark.gif" border="0" alt="ブックマークする"');
//  document.write(' onclick="window.sidebar.addPanel(document.title, location, \'\');" />');
} else if (navigator.userAgent.indexOf("Opera") > -1) {
  document.write('<a href="' + location + '" rel="sidebar" title="' + document.title + '"><img src="/images/btn_bookmark.gif" border="0" alt="ブックマークする" /></a>');
} else {
  // do nothing
}