function show_external_bookmark(bm_url, bm_title)
{
  var bookmark_list = new Array();
  var i, t, name, url;

  bookmark_list[0] = 'Yahoo!奇摩,yahoo,http://tw.myweb2.search.yahoo.com/myresults/bookmarklet?ei=UTF-8&u=__U__&t=__T__';
  bookmark_list[1] = 'Furl,furl,http://www.furl.net/savedialog.jsp?v=1&u=__U__&t=__T__';
  bookmark_list[2] = 'Technorati,technorati,http://technorati.com/faves?sub=favthis&add=__U__&title=__T__';
  bookmark_list[3] = 'HEMiDEMi,hemidemi,http://www.hemidemi.com/user_bookmark/new?url=__U__&title=__T__';
  bookmark_list[4] = 'MyShare,myshare,http://myshare.url.com.tw/index.php?func=newurl&from=mysharepop&url=__U__&desc=__T__';
  bookmark_list[5] = 'udn,udn,http://bookmark.udn.com/add?f_URL=__U__&f_TITLE=__T__';
  bookmark_list[6] = 'funP,funp,http://funp.com/push/submit/?via=tools&url=__U__&title=__T__';
  bookmark_list[7] = 'del.icio.us,delicious,http://del.icio.us/post?v=4&noui&jump=close&url=__U__&title=__T__';
  bookmark_list[8] = 'Google,google,http://www.google.com/bookmarks/mark?op=add&bkmk=__U__&title=__T__';

  for (i = 0; i < 8; i++)
  {
    t = bookmark_list[i].split(',');
    if (t.length != 3)
      continue;
    name   = t[0];
    img    = t[1];
    url    = t[2];

    url = url.replace('__U__', encodeURIComponent(bm_url));
    url = url.replace('__T__', encodeURIComponent(bm_title));
    document.write("<a href='" + url + "' target='_blank'><img src='http://img.okmall.tw/images/bookmark/" + img + ".png' width='16' height='16' title='" + name + "' alt='" + name + " BookMark' border='0' /></a>&nbsp;&nbsp;");
  }
}