function facebookShare (url,title,description) { 
	var sharePath = 'http://www.inspirationmessages.net/share/';
	var image_src = 'http://www.inspirationmessages.net//images/fb_share.jpg';
	var shareURL = encodeURIComponent(sharePath + '?' + 'url='+url+'&title=' + title + '&description=' + description + '&image_src=' + image_src);
	if(!window.open('http://www.facebook.com/sharer.php?u=' + shareURL + '&t=' + escape(title), '_blank')) {
		alert('Please disable your popup blocker and try again.');
	}
}