function fbs_click(){
	//u=location.href;
	//t=document.title;
	//window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(location.href),'sharer','toolbar=0,status=0,width=626,height=436');
	window.open('http://www.addthis.com/bookmark.php?pub=addthis&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title));
	return false;
}

function newstoplurk(){
	u=location.href;
	plurkstr=document.title;
	untagplurkstr=RemoveAH(plurkstr);
	untagplurkstr=untagplurkstr.substr(0,200);
	untagplurkstr='CDC:' + untagplurkstr;
	enplurkstr=encodeURI( untagplurkstr );
	//url='http://www.plurk.com/?qualifier=shares&status='+enplurkstr;
	url = 'http://www.plurk.com/?status='+plurkstr+' '+u;
	//url='http://www.plurk.com/?status='+untagplurkstr;
	window.open(url,'new');
}

function RemoveAH ( strText ){
    var regEx = /(<a[^>]*>)|(<[^>]a>)/g;
    var regExB = /(<A[^>]*>)|(<[^>]A>)/g;
    A = strText.replace(regEx, "");
	return A.replace(regExB, "");
}


