function blog_tags(type, file, title) {
// Javascript function to put social bookmarking text / icons / links on the bottom of a RapidWeaver blog post
// referenced in header using <script type="text/javascript" src="/blog/index_assets/blog_tags.js"></script> 
// By Lorne Ipsum (http://geekcounterpoint.net), 2007
// Free for all to use, so long as you don't remove this credit text, or charge others for its use
//
// Invoke by including this text in your post:  
//    <SCRIPT LANGUAGE="javascript">blog_tags('post', 'pocketphonicsupdate.html', 'Making PocketPhonics better')</SCRIPT>
//
// Here, you'll replace "xyz" with your post's permalink name, and "Title" with your post's title
// If you use this on a podcast episode (vs. blog post), replace "post" with "episode"

var site = "http://appsinmypocket.com"  //Change this for your site
//
// This function assumes all your images are in a folder called "images" at the top level of your site

document.write('Like this ' + type + '?  Move it on along with:<br><FONT SIZE="-2">');

document.write('<a href="mailto:?subject=' + title +'&body=' + site + '/blog/index_files/' + file + '" title="Email a friend">');
document.write('<img src="' + site + '/images/link_mail.png" alt="email" /> email</a>  |  ');

document.write('<a href="http://del.icio.us/post?url=' + site + '/blog/index_files/' + file + '&amp;title=' + title +'" title="Bookmark this post on del.icio.us.">');
document.write('<img src="' + site + '/images/link_delicious.png" alt="delicious" /> delicious</a>  |  ');

document.write('<a href="http://digg.com/submit?phase=2&amp;url=' + site + '/blog/index_files/' + file + '" title="Digg this post on digg.com.">');
document.write('<img src="' + site + '/images/link_digg.png" alt="digg" /> digg</a>  |  ');

document.write('<a href="http://reddit.com/submit?url=' + site + '/blog/index_files/' + file + '&amp;title=' + title +'" title="Submit this post on reddit.com.">');
document.write('<img src="' + site + '/images/link_reddit.png" alt="reddit" /> reddit</a>  |  ');

document.write('<a href="http://www.newsvine.com/_tools/seed&amp;save?u=' + site + '/blog/index_files/' + file + '&amp;h=' + title +'" title="Submit this post on newsvine.com.">');
document.write('<img src="' + site + '/images/link_newsvine.png" alt="newsvine" /> newsvine</a>  |  ');

document.write('<a href="http://www.furl.net/storeIt.jsp?u=' + site + '/blog/index_files/' + file + '&amp;t=' + title +'" title="Submit this post on furl.net.">');
document.write('<img src="' + site + '/images/link_furl.png" alt="furl" /> furl</a>  |  ');

document.write('<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=' + site + '/blog/index_files/' + file + '&amp;title=' + title +'" title="Bookmark this post on Google.">');
document.write('<img src="' + site + '/images/link_google.png" alt="google" /> google</a></FONT> ');
}