

function spkOBJ(e){
	e.innerHTML=e.innerHTML+'(1)';
	
	window.open(e.href);
	return false;
}



function playCount(keyword){
		
		
		/* HTTPリクエスト送信（キャッシュ対策） */
		document.getElementById('bbsNews').innerHTML='<img src="../img/loading.gif" /> '+keyword+' に対するみんなの関心を読み込んでいます...';
		var url = '../js/bbsNews.php?keyword='+encodeURIComponent(keyword)+'&time='+Math.random();
		var oHttp = dom.ajax.httpGetRequest(url, printTextBN);
		/* リクエストに失敗したときの処理 */
		if( ! oHttp) {
			alert('エラー');
		}
}


function printTextBN(oHttp){
  
	if(oHttp.status == 200){
		text = oHttp.responseText;
		document.getElementById('bbsNews').innerHTML=text;
	}else{
		alert('エラー');
	}
}



		
