function ichiroNews(){
		
		/* HTTPリクエスト送信（キャッシュ対策） */
		
		var url = '../js/ichiroNews.php?time='+Math.random();
		var oHttp = dom.ajax.httpGetRequest(url, printTextIN);
		/* リクエストに失敗したときの処理 */
		if( ! oHttp) {
			/* alert('エラー'); */
		}
}

/* ---------------------------------------------------------*/
/* ロードしたデータを表示 */
/* ---------------------------------------------------------*/
function printTextIN(oHttp) {
  
	/* HTTPレスポンスステータスが200(OK)かを評価 */
	if(oHttp.status == 200) {
		/* 受信したデータ */
		text = oHttp.responseText;
		/* データを表示 */
		document.getElementById('comment').innerHTML='<div style="float:right; border:0px; width:324px; height:56px; background:url(./img/comment.jpg);"><p style="text-align:left; margin:10px 10px 10px 30px; color:#ffffff;">'+text+'</p></div>';	
		
		
	} else {
		/* alert('エラー'); */
	}
}
	

