// JavaScript Document
// Bookmarks script - Favorites and social bookmarks
var txt = "Bookmark this page";
var url = location.href;
var who = document.title;
var ver = navigator.appName
var num = parseInt(navigator.appVersion)
	  /* Bookmarks/Favorites - display CTL-D for non IE browsers like Firefox */
if ((ver == "Microsoft Internet Explorer")&&(num >= 4)){ 	  
  document.write('<a href="javascript:window.external.AddFavorite(url,who);" alt="add to favorites" onMouseOver=" window.status=txt; return true; " ><img src="favorites.png" width="80" height="15" border="0" ></a>');
} else{
  document.write('<a href="javascript:window.external.AddFavorite(url,who);"  alt="CTL-D to bookmark" title="CTL-D to bookmark" onMouseOver=" window.status=txt; return true; " ><img src="ctld.png" width="80" height="15" border="0" ></a>');
}
// Del.icio.us
document.write('&nbsp;&nbsp;<a href=http://del.icio.us/post?&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)+' target="blank"><img src="delicious.png" width="80" height="15" alt="add to del.icio.us" border="0"></a>');
// Y! My Web
document.write('&nbsp;&nbsp;<a href=http://myweb2.search.yahoo.com/myresults/bookmarklet?t='+encodeURIComponent(document.title)+'&d=&u='+encodeURIComponent(window.location.href)+'&ei=UTF-8 ><img src="myweb.png" width="80" height="15" border="0" alt="post to Yahoo MyWeb" /></a>');
// Spurl
document.write('&nbsp;&nbsp;<a href=http://www.spurl.net/spurl.php?title='+encodeURIComponent(document.title)+'&url='+encodeURIComponent(location.href)+' target="blank"><img src="spurl.png" width="80" height="15" alt="add to spurl" border="0" /></a>');
// Furl
document.write('&nbsp;&nbsp;<a href=http://www.furl.net/storeIt.jsp?u='+encodeURIComponent(location.href)+'&t='+encodeURIComponent(document.title)+' target="blank"><img src="furl.png" alt="furl this" width="80" height="15" border="0" /></a>');
// Digg
document.write('&nbsp;&nbsp;<a href=http://digg.com/submit?phase=2&url='+encodeURIComponent(location.href)+' target="blank"><img src="digg.png" alt="digg this" width="80" height="15" border="0" /></a>');