function shareFacebook() 
{
	u=location.href;
	t=document.title;
	window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'share');
}

function shareDelicious() 
{
	u=location.href;
	t=document.title;
	window.open('http://del.icio.us/post?url='+encodeURIComponent(u)+'&title='+encodeURIComponent(t),'share');
}

function shareTechnorati() 
{
	u=location.href;
	t=document.title;
	
	window.open('http://technorati.com/faves?add='+encodeURIComponent(u),'share');
}
function shareGoogle() 
{
	u=location.href;
	t=document.title;
	
	window.open('http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk='+encodeURIComponent(u)+'&title='+encodeURIComponent(t),'share');
}

function shareDigg() 
{
	u=location.href;
	t=document.title;
	
	window.open('http://digg.com/submit?phase=2&url='+encodeURIComponent(u)+'&title='+encodeURIComponent(t),'share');

}
function shareYahoo() 
{
	u=location.href;
	t=document.title;

window.open('http://myweb2.search.yahoo.com/myresults/bookmarklet?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'share');
}


function shareMySpace() 
{
	u=location.href;
	t=document.title;
    window.open('http://www.myspace.com/Modules/PostTo/Pages/?c='+encodeURIComponent(u)+'&t='+encodeURIComponent(t)+'c='+encodeURIComponent(u),'share');
}