// 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)
// 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="http://www.pokerdefined.com/bookmarks/delicious.png" alt="add to del.icio.us" title="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="bookmarks/myweb.png" border="0" alt="post to Yahoo MyWeb" title="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="bookmarks/AddTo_Spurl.gif" 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="bookmarks/furl.png" alt="furl this" title="Add to Furl"  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>');
  /* Bookmarks/Favorites - display CTL-D for non IE browsers like Firefox */
if ((ver == "Microsoft Internet Explorer")&&(num >= 4)){ 	  
  document.write('&nbsp;&nbsp;<a href="javascript:window.external.AddFavorite(url,who);" onMouseOver=" window.status=txt; return true; " ><img src="http://www.pokerdefined.com/bookmarks/favorites.png" width="80" height="15" alt="add to favorites" title="add to favorites" border="0" ></a>');
} else{
  document.write('&nbsp;&nbsp;<a href="javascript:window.external.AddFavorite(url,who);"  onMouseOver=" window.status=txt; return true; " ><img src="http://www.pokerdefined.com/bookmarks/ctld.png" width="80" height="15" alt="CTL-D to bookmark" title="CTL-D to bookmark" border="0" ></a>');
}