
function share(url){
	
	//Facebook
	document.writeln("<a target='_blank' onclick='window.open(this.href,'','toolbar=0, resizable=yes, scrollbars=yes, status=0, width=626, height=436' );return false;' href='");
	document.writeln("http://www.facebook.com/sharer.php?u=" + escape(url));
	document.writeln("' ><img title='Add to Facebook' src='http://finndigital.com/newsletter/hotsheet/images/link-facebook.gif' width='16' height='16' alt='Facebook' /></a>");
	
	//Digg
	document.writeln("<a target='_blank' onclick='window.open(this.href,'','toolbar=0, resizable=yes, scrollbars=yes, status=0, width=900, height=600' );return false;' href='");
	document.writeln("http://digg.com/submit?phase=2&amp;url=" + escape(url));
	document.writeln("' ><img title='Digg This' src='http://finndigital.com/newsletter/hotsheet/images/link-digg.gif' width='16' height='16' alt='Digg' /></a>");
	
	//Delicious
	document.writeln("<a target='_blank' onclick='window.open(this.href,'','toolbar=0, resizable=yes, scrollbars=yes, status=0, width=700, height=400' );return false;' href='");
	document.writeln("http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=" + escape(url));
	document.writeln("' ><img title='Save to delicious' src='http://finndigital.com/newsletter/hotsheet/images/link-delicious.gif' width='16' height='16' alt='delicious' /></a>");

	//Twitter
	document.writeln("<a target='_blank' href='");
	document.writeln("http://twitter.com/home?status=" + escape(url));
	document.writeln("' ><img title='Tweet This' src='http://finndigital.com/newsletter/hotsheet/images/link-twitter.gif' width='16' height='16' alt='Tweet This'></a>");

	//MySpace
	document.writeln("<a target='_blank' onclick='window.open(this.href,'','toolbar=0, resizable=yes, scrollbars=yes, status=0, width=700, height=400' );return false;' href='");
	document.writeln("http://www.myspace.com/Modules/PostTo/Pages/?u=" + escape(url));
	document.writeln("' ><img title='Post to MySpace' src='http://finndigital.com/newsletter/hotsheet/images/link-myspace.gif' width='16' height='16' alt='MySpace' /></a>");

}