function blogPostShare(linkObj,site,title,byline,keyword,pubdate,description,section,popUpUrl){  
	switch (site) {
	case "facebook":
		return postPopUp(linkObj, 'http://www.facebook.com/sharer.php?u=' + popUpUrl + '&t=' + title);
		break;
   case "digg":
		return postPopUp(linkObj, 'http://digg.com/remote-submit?phase=2&url=' + popUpUrl + '&title=' + title + '&bodytext=' + description);
		break;
	case "permalink":
		return postPopUp(linkObj, 'http://www.nytimes.com/export_html/common/new_article_post.html?url=' + popUpUrl + '&title=' + title+ '&summary=' + description + '&section=' + section + '&pubdate=' + pubdate + '&byline=' + byline);
		break;
	case "delicious":
		return postPopUp(linkObj, 'http://del.icio.us/post?v=4&partner=nyt&noui&jump=close&url=' + popUpUrl + '&title=' + title + '&bodytext=' + description);
		break;
	case "twitter":
		var status = encodeURIComponent('�����ڿ���')+title+encodeURIComponent('����ƪ���£������?����t�ӣ�');
		return postPopUp(linkObj, 'http://twitter.com/home?status='+ status + popUpUrl);
		break;
	case "yahoobuzz":
    	return postPopUp(linkObj, 'http://myweb.cn.yahoo.com/popadd.html?title='+title+'&url='+popUpUrl+'&tag=&summary=');
		break;

	case "xiaonei":
    	return postPopUp(linkObj, 'http://share.renren.com/share/buttonshare.do?link='+ popUpUrl+'&title='+title);
		break;

    case "kaixin":
    	return postPopUp(linkObj, 'http://www.kaixin001.com/repaste/share.php?rtitle='+title+'&rcontent='+description+'&rurl='+popUpUrl);
		break;

	case "mixx":
		try {
		    var otherParams =
			     '&title='       + title
			   + '&description=' + description
			   + '&tags='        + keywords
			   + '&partner=http://'     + window.location.host;
		    return postPopUp(linkObj, 
			   'http://mini.mixx.com/submit/story'
			   + '?page_url='    + popUpUrl
			   + otherParams);
		} catch(e) {
		    return postPopUp(linkObj, 
			   'http://mini.mixx.com/submit/story'
			   + '?page_url='    + popUpUrl
			   + '&title='       + title
			   + '&partner=http://'     + window.location.host);
		}
		break;

	case "linkedin":
        return postPopUp(linkObj, 
		     'http://www.linkedin.com/shareArticle?mini=true'
			   + '&url='         + popUpUrl
			   + '&title='       + title
			   + '&summary='     + description
			   + '&source=http://'      + window.location.host
		  );
		break;
	
	case "douban":
		return postPopUp(linkObj, 'http://www.douban.com/recommend/?url='+popUpUrl)+'&title='+title;
		break;
	
	
	
	}
	
	
}

function postPopUp(linkObj,url){
	linkObj.href = url;
	return true;
}
