function socialSite(pSite)
{
	var url = encodeURIComponent(location.href);
	var title = encodeURIComponent(document.title);
	
	switch (pSite)
	{
		case "DELICIOUS":
			window.open('http://del.icio.us/post?v=4&noui&jump=close&url=' + url + '&title=' + title + '', 'delicious', 'toolbar=no,resizable=yes,width=700,height=400');
			return false;
			break;
			
		case "DIGG":
		  window.open('http://digg.com/submit?phase=2&url=' + url + '&title=' + title + '', 'digg', 'toolbar=no,resizable=yes');
		  return false;
			break;
			
		case "FACEBOOK":
		  window.open('http://www.facebook.com/sharer.php?u=' + url + '&t=' + title + '', 'sharer', 'toolbar=no,resizable=yes,status=0,width=626,height=436');
		  return false;
		  break;
		  
		case "STUMBLEUPON":
		  window.open('http://www.stumbleupon.com/submit?url=' + url + '&title=' + title + '', 'stumbleUpon', 'toolbar=no,resizable=yes,width=750,height=500');
		  return false;
		  break;
		  
		case "GOOGLE":
			window.open('http://www.google.com/bookmarks/mark?op=edit&bkmk=' + url + '&title=' + title + '', 'sharer', 'scrollbar=yes,toolbar=no,resizable=yes,status=0,width=800,height=436');
			return false;
			break;
			
		case "TECHNORATI":
			window.open('http://technorati.com/faves?add=' + url + '&t=' + title + '', 'sharer', 'toolbar=no,resizable=yes,status=0,width=980,height=436');
			return false;
			break;
			
		case "FURL":
			window.open('http://www.furl.net/storeIt.jsp?u=' + url + '&t=' + title + '', 'sharer', 'toolbar=no,resizable=yes,status=0,width=626,height=436');
			return false;
			break;
		default:
			alert("this shouldn't happen");
	}
}