function fbs_set(u, t) {
var _param = 'http://www.facebook.com/sharer.php?u=';
_param += encodeURIComponent(u);
_param += '&t=';
_param += encodeURIComponent(t);
window.open( _param, 'sharer', 'toolbar=0,status=0,width=626,height=456');
}
function plurk_set(u, t) {
var _param = 'http://www.plurk.com/?qualifier=shares&status=';
_param += encodeURIComponent(u);
_param += '+(';
_param += encodeURIComponent(t);
_param += ')';
window.open(_param);
}
function show_external_bookmark(bm_url, bm_title)
{
  var bookmark_list = new Array();
  var i, t, name, url;

	bookmark_list[0] =  'udn,udn,http://bookmark.udn.com/add?f_URL=__U__&f_TITLE=__T__';
	bookmark_list[1] =	'funP,funp,http://funp.com/push/submit/?via=tools&url=__U__&title=__T__';
	bookmark_list[2] =	'HEMiDEMi,hemidemi,http://www.hemidemi.com/user_bookmark/new?url=__U__&title=__T__';
	bookmark_list[3] =	'MyShare,myshare,http://myshare.url.com.tw/index.php?func=newurl&from=mysharepop&url=__U__&desc=__T__';
	bookmark_list[4] =	'Yahoo!奇摩,yahoo,http://tw.myweb2.search.yahoo.com/myresults/bookmarklet?ei=UTF-8&u=__U__&t=__T__';
	bookmark_list[5] =	'Fiigo,fiigo,http://www.fiigo.com.tw/bookmark/add.php?title=__T__&url=__U__';
	bookmark_list[6] =	'Google,google,http://www.google.com/bookmarks/mark?op=add&bkmk=__U__&title=__T__';
	bookmark_list[7] =  'Furl,furl,http://www.furl.net/savedialog.jsp?v=1&u=__U__&t=__T__';
	bookmark_list[8] = 	'Technorati,technorati,http://technorati.com/faves?sub=favthis&add=__U__&title=__T__';   
	bookmark_list[9] =  'del.icio.us,delicious,http://del.icio.us/post?v=4&noui&jump=close&url=__U__&title=__T__';  

  for (i = 0; i < bookmark_list.length; 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://bluezz.tw/images/bookmark/" + img + ".png' width='16' height='16' title='" + name + "' alt='" + name + " BookMark' border='0' /></a>&nbsp;&nbsp;");
  }
}