function showShare(){
	var share=document.getElementById("share");		
		share.innerHTML="<span style='position:relative;top:-4px'>分享到：&nbsp;</span>"+
		"<a id='renren' href='' target='_blank'title='人人网'>"+
		"<img border='0' src='http://png.gc73.com.cn/lobbyimg/renren.png'/></a>&nbsp;"+
		"<a id='kaixin' href='' target='_blank'title='开心网'>"+
		"<img border='0' src='http://png.gc73.com.cn/lobbyimg/kaixin.png'/></a>&nbsp;"+
		"<a id='qzone' href='' target='_blank'title='QQ空间'>"+
		"<img border='0' src='http://png.gc73.com.cn/lobbyimg/qq.png'/></a>&nbsp;"+
		"<a id='sina' href='' target='_blank'title='新浪微博'>"+
		"<img border='0' src='http://png.gc73.com.cn/lobbyimg/xinlan.png'/></a>&nbsp;"+
		"<a id='feixin' href='' target='_blank'title='飞信'>"+
		"<img border='0' src='http://png.gc73.com.cn/lobbyimg/feixin.png'/></a>&nbsp;"+
		"<a id='douban' href='' target='_blank'title='豆瓣'>"+
		"<img border='0' src='http://png.gc73.com.cn/lobbyimg/douban.png'/></a>";
		addLink();
}
function addLink(){
	var shareUrl = '';
	var shareLink = encodeURIComponent('http://www.gc73.net/');
	var shareTitle = encodeURIComponent('波克城市游戏平台，提供斗地主，麻将，德州扑克等热门棋牌游戏，免费玩游戏，轻松赢奖品，超强的防作弊系统，让您玩的更舒心，500万玩家的共同选择，还等什么，一起加入吧！官方网址：www.gc73.net');
	var shareContent = encodeURIComponent('波克城市游戏平台，提供斗地主，麻将，德州扑克等热门棋牌游戏，免费玩游戏，轻松赢奖品，超强的防作弊系统，让您玩的更舒心，500万玩家的共同选择，还等什么，一起加入吧！官方网址：www.gc73.net');
	var shareSource = encodeURIComponent('波克城市游戏平台，提供斗地主，麻将，德州扑克等热门棋牌游戏，免费玩游戏，轻松赢奖品，超强的防作弊系统，让您玩的更舒心，500万玩家的共同选择，还等什么，一起加入吧！官方网址：www.gc73.net');
	var sourceUrl = encodeURIComponent('http://www.gc73.net/');
	/*人人网*/
	shareUrl = 'http://share.renren.com/share/buttonshare.do?link=';
	shareUrl += shareLink+'&title='+shareTitle;
	document.getElementById('renren').setAttribute('href',shareUrl);
	
	/*开心网*/
	shareUrl = 'http://www.kaixin001.com/repaste/share.php?rurl=';
	shareUrl += shareLink+'&rcontent='+shareContent+'&rtitle='+shareTitle;
	document.getElementById('kaixin').setAttribute('href',shareUrl);
	
	/*QQ空间*/
	shareUrl = 'http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url='+shareLink;
	document.getElementById('qzone').setAttribute('href',shareUrl);
	
	/*新浪微博*/
	shareUrl = 'http://v.t.sina.com.cn/share/share.php?c=spr_web_bd_gc73_weibo&url='+shareLink;
	shareUrl += '&title='+shareTitle+'&source='+shareSource+'&sourceUrl='+sourceUrl;
	shareUrl += '&content=utf-8&pic=http%3A%2F%2Fpng.gc73.com.cn%2Fwebsite_img%2Fpoker_logo.png';
	document.getElementById('sina').setAttribute('href',shareUrl);
	
	/*飞信*/
	shareUrl = 'https://feixin.10086.cn/account/login?returnurl=';
	shareUrl += encodeURIComponent('http://space.feixin.10086.cn/api/share?source=波克城市&title=波克城市&url='+shareLink);
	document.getElementById('feixin').setAttribute('href',shareUrl);
	
	/*豆瓣网*/
	shareUrl = 'http://www.douban.com/recommend/?url='+sourceUrl+'&title='+shareTitle;
	document.getElementById('douban').setAttribute('href',shareUrl);
	
}

