/*
	Mark's Social Bookmark Script :-)
*/
function write_social_links(image_dir) {

	/* CSS STYLE */
	document.writeln('<style type="text/css">');
	document.writeln('.social_links_div {');
	document.writeln('  width:           480px;');
	document.writeln('  margin:          8px 0px 0px 0px;');
	document.writeln('  border:          solid 2px #600;');
	document.writeln('  padding:         4px;');
	document.writeln('  text-align:      center;');
	document.writeln('  font-size:       11px;');
	document.writeln('  font-family:     Arial, Helvetica, sans-serif;');
	document.writeln('  color:           black;');
	document.writeln('  background-color: white;');
	document.writeln('}');	
	document.writeln('.social_links_title {');
/*	document.writeln('  text-decoration: underline;'); */
	document.writeln('  font-weight:     bold;');
	document.writeln('}');
	document.writeln('.social_links_div a {');
	document.writeln('  text-decoration: none;');
	document.writeln('  font-size:       11px;');
	document.writeln('  font-family:     Arial, Helvetica, sans-serif;');
	document.writeln('  font-weight:     normal;');
	document.writeln('  color:           black;');
	document.writeln('}');
	document.writeln('.social_links_div a img {');
	document.writeln('  border:          0px;');
	document.writeln('  vertical-align:  middle;');
	document.writeln('}');
	document.writeln('</style>');


	/* HTML LINKS */
	
	document.writeln('<div class="social_links_div"><span class="social_links_title">Bookmark With:</span> &nbsp; ');
	
	/*  del.icio.us   http://del.icio.us/post?v=4&noui&jump=close&url=<<URL>>&title=<<TITLE>>   */
	document.writeln(
		'<a href="http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=' + escape(location.href) + '&amp;title=' + escape(document.title) + '">' +
		'<img src="' + image_dir + 'del_icio_us.gif" alt="del.icio.us"> del.icio.us</a> &nbsp; '
	);
	
	/*  Digg          http://digg.com/submit?phase=2&url=<<URL>>&title=<<TITLE>>   */
	document.writeln(
		'<a href="http://digg.com/submit?phase=2&amp;url=' + escape(location.href) + '&amp;title=' + escape(document.title) + '">' +
		'<img src="' + image_dir + 'digg.gif" alt="Digg"> Digg</a> &nbsp; '
	);
	
	/*  reddit        http://reddit.com/submit?url=<<URL>>&title=<<TITLE>>   */
	document.writeln(
		'<a href="http://reddit.com/submit?url=' + escape(location.href) + '&amp;title=' + escape(document.title) + '">' +
		'<img src="' + image_dir + 'reddit.gif" alt="reddit"> reddit</a> &nbsp; '
	);
	
	/*  Facebook      http://www.facebook.com/sharer.php?u=<<URL>>   */
	document.writeln(
		'<a href="http://www.facebook.com/sharer.php?u=' + escape(location.href) + '">' +
		'<img src="' + image_dir + 'facebook.gif" alt="Facebook"> Facebook</a> &nbsp; '
	);

	/*  StumbleUpon   http://www.stumbleupon.com/submit.php?url=<<URL>>&title=<<TITLE>>   */
	document.writeln(
		'<a href="http://www.stumbleupon.com/submit.php?url=' + escape(location.href) + '&amp;title=' + escape(document.title) + '">' +
		'<img src="' + image_dir + 'stumbleupon.gif" alt="StumbleUpon"> StumbleUpon</a> &nbsp; '
	);
	
	document.writeln('</div>');
}
