

function enc(s)
{
	txt = s;
	txt = txt.replace(/ /gi, "%20");
	txt = txt.replace(/\?/gi, "%3F");
	txt = txt.replace(/=/gi, "%3D");
	txt = txt.replace(/:/gi, "%3A");
	txt = txt.replace(/\//gi, "%2F");
	return txt;
}

var title = document.title;
var url = window.location.href;
var link = '"http://digg.com/submit?phase2&url=' + enc(url) + '&title=' + enc(title) + '&bodytext=&topic=world_news"';
var img = '<img src="http://media.newamericamedia.org/resources/91x17-digg-button.gif" height="17" width="91" alt="digg this story"  border="0" />';
document.write('<a href=' + link + '>' + img + '</a>');
