

// Facebook : Sharing Method
function shareFB(url, title)
{
	var u = encodeURIComponent(url);
	var t = encodeURIComponent(title);
	window.open("http://facebook.com/sharer.php?u=" + u + "&t=" + t, "facebookShare", "width=650, height=500, resizeable=0, toobar=0, status=0");
	return false;
}

function noClick() {}