//Bookmark on del.icio.us
function dbt_bookmark() {
	//URL of this document
	var loc=location.href;
	//Strip out any anchors
	var apos=loc.indexOf('#');
	loc=(apos>0?loc.substring(0,apos):loc);
	//Redirect to del.icio.us
	location.href='http://del.icio.us/post?v=2&amp;url='
	+ encodeURIComponent(loc)
	+'&amp;title='
	+encodeURIComponent(document.title);
	//Return false so the link won't be activated.
	return false; }
