function share(value, u, t) {
		u=location.href;
		t=document.title;
	u = encodeURIComponent(u);
	t = encodeURIComponent(t);
	if (value == 'del.icio.us') {
		window.open('http://del.icio.us/post?url='+u+'&title='+t, 'bookmark', 'toolbar=0,status=0,width=820,height=520');
	}
	if (value == 'google') {
		window.open('http://www.google.com/bookmarks/mark?op=edit&bkmk='+u+'&title='+t, 'bookmark', 'toolbar=0,status=0,width=780,height=520');
	}
	if (value == 'yahoo') {
		window.open('http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&u='+u+'&t='+t, 'bookmark', 'toolbar=0,status=0,width=780,height=520');
	}
	if (value == 'facebook'){
		window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');
	}
	if (value == 'twitter'){
		window.open('http://twitter.com/home?status='+(t)+' '+(u), 'sharer','toolbar=0,status=0,width=780,height=436');
	}
	return false;
}
