

function addToDigg(txt) {
	
	title = (txt!='undefined')?(" :: "+txt):"";
	var URL = 'http://digg.com/submit?phase=2&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title+title);//&bodytext=DESCRIPTION&topic=TOPIC 
	//alert(img.src);
	window.open(URL);
}

function addToDelIcioUs(txt) {
	title = (txt!='undefined')?(" :: "+txt):"";
	var URL = 'http://del.icio.us/post?v=4&noui&jump=close&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title+title);
	//alert(img.src);
	window.open(URL);
}