// JavaScript Document

	function currentUrl()
	{
	return(document.location);
	}
	
	function delicious(U)
	{
		var targetUrl = 'http://del.icio.us/post?url='+currentUrl();
		window.open(targetUrl);
	}
	function digg(U)
	{
		var targetUrl = 'http://digg.com/submit?url='+currentUrl();
		window.open(targetUrl);
	}
	function reddit(U)
	{
		var targetUrl = 'http://reddit.com/submit?url='+currentUrl();
		window.open(targetUrl);
	}
	function facebook(U)
	{
		var targetUrl = 'http://www.facebook.com/sharer.php?u='+currentUrl();
		window.open(targetUrl);
	}
	function stumbleUpon(U)
	{
		var targetUrl = 'http://www.stumbleupon.com/submit?url='+currentUrl();
		window.open(targetUrl);
	}
