// Callback function to replace document url and titles with current
function social_bookmark(_target) {
	_url = encodeURIComponent(document.location.href);
	_title = encodeURIComponent(document.title);
	_target = _target.replace(/__url/ig,_url);
	_target = _target.replace(/__title/ig,_title);
	window.open(_target,'social','');
}
