function faceBookShare() {
	u=location.href
	t=document.title;
	window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');
}

function redditShare() {
	u=location.href;
	t=document.title;
	window.open('http://www.reddit.com/submit?url='+encodeURIComponent(u)+'&title='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');
}

function diggShare() {
	u=location.href
	t=document.title;
	topic='environment'
	window.open('http://digg.com/submit?url='+encodeURIComponent(u)+'&title='+encodeURIComponent(t)+'&topic='+topic);
	
}

function deliciousShare() {
	u=location.href
	t=document.title;
	window.open('http://delicious.com/save?v=5&amp;noui&amp;jump=close&amp;url='+encodeURIComponent(u)+'&amp;title='+encodeURIComponent(t), 'delicious','toolbar=no,width=550,height=550');
	
}

function mySpaceShare() {
	u=location.href
	t=document.title;
	desc = "test"
	type = 3
	  var targetUrl = 'http://www.myspace.com/index.cfm?fuseaction=postto&' + 't=' + encodeURIComponent(t)
    + '&c=' + encodeURIComponent(desc) + '&u=' + encodeURIComponent(u) + '&l=' + type;
	window.open(targetUrl, 'myspace','toolbar=no,width=550,height=550');
	
}

function twitterShare() {
	u=location.href
	t=document.title;
	desc = "test"
	type = 3
	  var targetUrl = 'http://twitter.com/home?status='+encodeURIComponent(u)
	window.open(targetUrl, 'myspace','toolbar=no,width=550,height=550');

}

function googleShare() {
	u=location.href
	t=document.title;
	desc = "test"
	type = 3
	  var targetUrl = 'http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk='+encodeURIComponent(u)+'&title='+encodeURIComponent(t)
	window.open(targetUrl, 'myspace','toolbar=no,width=550,height=550');

}

function liveShare() {
	u=location.href
	t=document.title;
	desc = "test"
	type = 3
	  var targetUrl = 'https://favorites.live.com/quickadd.aspx?marklet=1&mkt=en-us&url='+encodeURIComponent(u)+'&title='+encodeURIComponent(t)+'&top=1'
	window.open(targetUrl, 'myspace','toolbar=no,width=550,height=550');

}


