function returnURL(stringBookmark)
{

if(stringBookmark == "digg")
	{
	document.location.href = "http://digg.com/submit?phase=3&amp;url=" + document.location.href;
	}
else if(stringBookmark == "delicious")
	{
		document.location.href = "http://del.icio.us/post?url=" + document.location.href  + "&amp;title=" + document.title;
	}
else if(stringBookmark == "yahoo")
	{
		document.location.href = "http://myweb2.search.yahoo.com/myresults/bookmarklet?u=" + document.location.href + "&amp;=" + document.title;
	}
else if(stringBookmark == "technorati")
	{
		document.location.href = "http://www.technorati.com/cosmos/search.html?url" + document.location.href; 
	}
else if(stringBookmark == "spurl")
	{
		document.location.href = "http://www.spurl.net/spurl.php?url=" + document.location.href  + "&amp;title=" + document.title;
	}
else if(stringBookmark == "reddit")
	{
		document.location.href = "http://reddit.com/submit?url=" + document.location.href  + "&amp;title=" + document.title;
	}
	else
	{
		document.location.href = "http://digg.com/submit?phase=3&amp;url=" + document.location.href;
	}					
}