//facebook simple sharing
function simplesharefacebook(facebook_share_url){
	newwindow = window.open('http://www.facebook.com/share.php?u=' + encodeURIComponent(facebook_share_url),'Facebook','resizable=1,height=300,width=800,toolbar=no,scrollbars=yes,location=no,status=no');
	if(window.focus) newwindow.focus();
}
//twitter simple sharing
function simplesharetwitter(twitter_share_status){
	newwindow = window.open('http://twitter.com/home?status='+encodeURIComponent(twitter_share_status),'Twitter','resizable=1,height=300,width=800,toolbar=no,scrollbars=yes,location=no,status=no');
	if(window.focus) newwindow.focus();
}
function sharetwitter(referer, copy, url, via){
	newwindow = window.open('http://twitter.com/share?original_referer='+encodeURIComponent(referer)+'&text='+encodeURIComponent(copy)+'&url='+encodeURIComponent(url)+'&via='+via,'Twitter','resizable=1,height=300,width=800,toolbar=no,scrollbars=yes,location=no,status=no');
	if(window.focus) newwindow.focus();
}
