/* social.js, 08/21/07 CMM */
/* All of these functions are for the bookmarking buttons on IGU */

function digg_click() {
	u=location.href;
	window.open('http://digg.com/submit?phase=2&amp;url='+encodeURIComponent(u)+'');
	return false;
}
function reddit_click() {
	u=location.href;
	window.open('http://reddit.com/submit?url='+encodeURIComponent(u)+'');
	return false;
}
function newsvine_click() {
	u=location.href;
	window.open('http://www.newsvine.com/_tools/seed&amp;save?u='+encodeURIComponent(u)+'');
	return false;
}
function delicious_click() {
	u=location.href;
	t=document.title;
	window.open('http://del.icio.us/post?url='+encodeURIComponent(u)+'&amp;title='+encodeURIComponent(t)+'');
	return false;
}
function stumble_click() {
	u=location.href;
	t=document.title;
	window.open('http://www.stumbleupon.com/submit?url='+encodeURIComponent(u)+'&amp;title='+encodeURIComponent(t)+'');
	return false;
}
function google_click() {
	u=location.href;
	t=document.title;
	window.open('http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk='+encodeURIComponent(u)+'&amp;title='+encodeURIComponent(t)+'');
	return false;
}
function yahoo_click() {
	u=location.href;
	t=document.title;
	window.open('http://myweb.yahoo.com/myresults/bookmarklet?u='+encodeURIComponent(u)+'&amp;t='+encodeURIComponent(t)+'&amp;ei=UTF');
	return false;
}