	
var u = location.href;
var t = document.title;

function facebook() 
{
	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 tweet()
{
	//document.write(decodeURIComponent(t));
	//document.write('http://www.twitter.com/home?status='+t+ " " +u);	
	t = t.replace(/ /g,"+");
	document.getElementById('tweetLink').href = 'http://www.twitter.com/home?status='+t+ "+" +u;
	return false;
}

function send()
{
	document.getElementById('sendLink').href = 'send_link.asp';
	return false;
}

