function fb() 
{
	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');
	return false;
}

function mysp()
{
    var targetUrl = 'http://www.myspace.com/index.cfm?fuseaction=postto&' + 't=' + gettitle()
    + '&c=' + gettitle() + '&u=' + encodeURIComponent(location.href) + '&l=' + 3;
    window.open(targetUrl);
}

function tw()
{
    var targetUrl = 'http://twitter.com/home?status=' + encodeURIComponent(gettitle())
    + ': ' + encodeURIComponent(location.href);
    window.open(targetUrl);
}

function gettitle()
{
	
	return document.title;
		
}