document.write('<table cellspacing="0" cellpadding="0" border="0">');
document.write('<tr><td style="padding-bottom:5px">');
document.write('<img src="/viaroot/images/delicious.gif" alt="" />&nbsp;');
document.write('&nbsp;&nbsp;<a class="smalllink" onclick="socialbook(\'delicious\');" href="javascript:void(0)">Add on del.icio.us</a>');
document.write('</td></tr>');
document.write('<tr><td style="padding-bottom:8px"><img src="/viaroot/images/digg-icon.gif" border="0">&nbsp;');
document.write('&nbsp;&nbsp;<a class="smalllink" onclick="socialbook(\'digg\');" href="javascript:void(0)">Digg it</a></td></tr>');
document.write('<tr><td style="padding-bottom:5px">');
document.write('<a href="http://www.facebook.com/share.php?u=<url>" onclick="return fbs_click()" target="_blank" class="fb_share_link">');
document.write('Add on Facebook</a></td></tr>');
document.write('</table>');

function fbs_click() {
	u=location.href;
	t=document.title;
	window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');
	return false;
}

function socialbook(link){
	switch(link){
	case 'delicious':
		var url = 'http://del.icio.us/post?url=';
		var location = window.location.href;
		var title = document.title;
		window.location = url+location+'&title='+title;
	break;
	case 'digg':
		var url = 'http://digg.com/submit?phase=2&url=';
		var location = window.location.href;
		var title = document.title;
		window.location = url+location+'&title='+title;
	break;
	}
}

