// Terry's Feedburner Flare KnockOff
function showTitle()
{
var t = document.getElementsByTagName('title')[0];
if ( !!t.childNodes.length ) {
//document.write( t.firstChild.data );
return t.firstChild.data
} else if ( t.innerHTML ) {
return t.innerHTML;
}
}

function showURL()
{
return location.href;
}

function showEncTitle()
{
var t = document.getElementsByTagName('title')[0];
if ( !!t.childNodes.length ) {
return escape(t.firstChild.data);
} else if ( t.innerHTML ) {
return escape(t.innerHTML);
}
}

function showEncURL()
{
return escape(location.href);
}

function checkForCharacters(inputString, checkString, startingIndex)
{
  if (!startingIndex) startingIndex = 0;
  return inputString.indexOf(checkString);
}


if (checkForCharacters(showURL(),'EntryID',0) > 0) 
{
//Email This
document.write('<p>');
document.write('<a href="http://www.feedburner.com/fb/a/emailFlare?itemTitle=' + showEncTitle() +'&uri=' + showEncURL() + '" target="_blank">Email this</a>');

//Sphinn
document.write('<span> &#8226; </span><a href="http://sphinn.com/login.php?return=/submit.php?url=' + showURL() + '" target="_blank">Sphinn It</a>');

//Google Boomarks
document.write('<span> &#8226; </span><a href="http://www.google.com/bookmarks/mark?op=edit&bkmk=' + showEncURL() + '&title=' + showEncTitle() + '" target="_blank">Google Bookmark This</a>');

//Delicious
document.write('<span> &#8226; </span><a href="http://del.icio.us/post?v=4&partner=fb&url=' + showEncURL() + '&title=' + showEncTitle() + '" target="_blank">Save to del.icio.us</a>');

//Stumble Upon
document.write('<span> &#8226; </span><a href="http://www.stumbleupon.com/submit?url=' + showURL() + '&title=' + showTitle() + '" target="_blank">Stumble It!</a>');

//Digg
document.write('<span> &#8226; </span><a href="http://digg.com/submit?phase=2&partner=fb&url=' + showEncURL() + '&title=' + showEncTitle() + '" target="_blank">Digg This!</a>');

//Facebook
document.write('<span> &#8226; </span><a href="http://www.facebook.com/share.php?u=' + showEncURL() + '" target="_blank">Share on Facebook</a>');

//Propeller
document.write('<span> &#8226; </span><a href="http://www.netscape.com/submit/?U=' + showURL() + '&T=' + showTitle() + '&sBy=feedflare" target="_blank">Submit To Propeller</a>');

//Furl It
document.write('<span> &#8226; </span><a href="http://www.furl.net/storeIt.jsp?u=' + showEncURL() + '&t=' + showEncTitle() + '" target="_blank">Furl This</a>');

//Fark
document.write('<span> &#8226; </span><a href="http://cgi.fark.com/cgi/fark/submit.pl?new_url=' + showEncURL() + '&new_comment=' + showEncTitle() + '" target="_blank">Fark It</a>');

//Yahoo
document.write('<span> &#8226; </span><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=' + showEncTitle() + '&u=' + showEncURL() + '" target="_blank">Add to Yahoo MyWeb2</a>');

//Technorati
document.write('<span> &#8226; </span><a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.terrycox.net%2F" target="_blank">Add to Technorati Favorites!</a>');

//Reddit
document.write('<span> &#8226; </span><a href="www.reddit.com/login?dest=%2Fsubmit%3Furl%3D' + showEncURL() + '%26title%3D' + showEncTitle() + '" target="_blank">Add to Reddit</a>');
http:

//Newsvine
document.write('<span> &#8226; </span><a href="http://www.newsvine.com/_wine/save?u=' + showEncURL() + '" target="_blank">Seed This</a>');

//Twit This
document.write('<span> &#8226; </span><a href="http://twitthis.com/twit?url=' + showEncURL() + '&title=' + showEncTitle() + '" target="_blank">Twit This!</a>');
document.write('</p>');
}