// Fuzz it!
function fuzz_bookmark(targetURL) {
	//URL of this document
	var loc=location.href;
	if(targetURL && targetURL.length>0) loc = targetURL;
	//Strip out any anchors
	var apos=loc.indexOf('#');
	loc=(apos>0?loc.substring(0,apos):loc);
	//Redirect to Fuzz
	window.open('http://www.fuzz.fr/?news=1&amp;url='
	+ encodeURIComponent(loc)
	+ '&title='
	+ encodeURIComponent(document.title));
	//Return false so the link won't be activated. 
	return false;
}
// Ajouter sur Scoopeo
function scoop_bookmark(targetURL) {
	//URL of this document
	var loc=location.href;
	if(targetURL && targetURL.length>0) loc = targetURL;
	//Strip out any anchors
	var apos=loc.indexOf('#');
	loc=(apos>0?loc.substring(0,apos):loc);
	//Redirect to Scoopeo
	window.open('http://www.scoopeo.com/scoop/new?newurl='
	+ encodeURIComponent(loc)
	+'&amp;title='
	+encodeURIComponent(document.title));
	//Return false so the link won't be activated. 
	return false;
}

