function shareToFacebook() {
	u=location.href;
	t=document.title;
	window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t));
	return false;
	}

function shareToTwitter() {
	u=location.href;
	t=document.title;
	window.open('http://twitter.com/home/?status='+encodeURIComponent(t)+' - '+encodeURIComponent(u));
	return false;
	}

function shareToMySpace() {
	u=location.href;
	t=document.title;	
	window.open('http://www.myspace.com/Modules/PostTo/Pages/?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t));
	return false;
	}

function bookmarkToStumbleupon() {
	u=location.href;
	t=document.title;
	window.open('http://www.stumbleupon.com/submit?url='+encodeURIComponent(u)+'&t='+encodeURIComponent(t));
	return false;
	}

function bookmarkToDelicious() {
	u=location.href;
	t=document.title;
	window.open('http://del.icio.us/post?url='+encodeURIComponent(u)+'&t='+encodeURIComponent(t));
	return false;
	}
		
function bookmarkToDigg() {
	u=location.href;
	title=document.title;
	window.open('http://digg.com/submit?phase=2&url='+encodeURIComponent(u)+'&title='+encodeURIComponent(title));
	return false;
	}
function bookmarkToReddit() {
	u=location.href;
	t=document.title;
	window.open('http://reddit.com/submit?url='+encodeURIComponent(u)+'&t='+encodeURIComponent(t));
	return false;
	}
