
function ShareSocial(site, text){

	if (site == 'facebook'){
		window.open("http://www.facebook.com/sharer.php?u="+window.location.href+"&t="+text);
	}
	else if (site == 'twitter'){
		window.open("http://twitter.com/intent/tweet?&url="+window.location.href+"&text="+text);
	}
	else if (site == 'google'){
		window.open("http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk="+window.location.href+"&title="+document.title+"&labels="+text);
	}
}
