
/**
 * Create linkto page links for sites Digg, Slashdot and del.icio.us.
 */
function linkTo() {
	// Digg
	document.write("<a href=\"javascript:location.href='http://digg.com/submit?phase=2&url=" + encodeURIComponent(location.href) + "&title=" + encodeURIComponent(document.title) + "'\" onClick=\"javascript:urchinTracker('outgoing/digg/" + location.href + "');\"><img src=\"images/digg.gif\" alt=\"Digg\"/></a><a href=\"javascript:location.href='http://digg.com/submit?phase=2&url=" + encodeURIComponent(location.href) + "&title=" + encodeURIComponent(document.title) + "'\" onClick=\"javascript:urchinTracker('outgoing/digg/" + location.href + "');\">Digg This!</a>");
	// Slashdot
	document.write("<a href=\"javascript:location.href='http://slashdot.org/bookmark.pl?url=" + encodeURIComponent(location.href) + "&title=" + encodeURIComponent(document.title) + "'\" onClick=\"javascript:urchinTracker('outgoing/slashdot/" + location.href + "');\"><img src=\"images/slashdot.gif\" alt=\"Slashdot\"></a><a href=\"javascript:location.href='http://slashdot.org/bookmark.pl?url=" + encodeURIComponent(location.href) + "&title=" + encodeURIComponent(document.title) + "'\" onClick=\"javascript:urchinTracker('outgoing/slashdot/" + location.href + "');\">Slashdot It!</a>");
	// del.icio.us 
	document.write("<a href=\"javascript:location.href='http://del.icio.us/post?v=4&noui&jump=close&url=" + encodeURIComponent(location.href) + "&title=" + encodeURIComponent(document.title) +"'\" onClick=\"javascript:urchinTracker('outgoing/delicious/" + location.href + "');\"><img src=\"images/delicious.gif\" alt=\"del.icio.us\"/></a><a href=\"javascript:location.href='http://del.icio.us/post?v=4&noui&jump=close&url=" + encodeURIComponent(location.href) + "&title=" + encodeURIComponent(document.title) +"'\" onClick=\"javascript:urchinTracker('outgoing/delicious/" + location.href + "');\">Del.icio.us</a>");
}