function handleDigg() {
	var url = "http://digg.com/submit?phase=2";
	url += "&url=" + encodeURIComponent(location.href);
	url += "&title=" + encodeURIComponent(document.title);
	window.open(url, "digg");
}

function handleDelicious() {
	var url = "http://del.icio.us/post?v=4&noui&jump=close";
	url += "&url=" + encodeURIComponent(location.href);
	url += "&title=" + (document.title);
	window.open(url, 'delicious');
}