function setNewComments(){
	var comments_array = new Array();
	var entry_link = null;
	var n;
	var list_length = 0;
	for(var i = 0;i < comment_list.length;i++){
	    entry_link = comment_list[i]["link"].split("#");
	    if(!comments_array[entry_link[0]]){
	        comments_array[entry_link[0]] = new Array();
	        list_length++;
	    }
	    n = comments_array[entry_link[0]].length;
	    comments_array[entry_link[0]][n] = comment_list[i];
	}
	var comments_html = "";
	var now_html = "";
	var j = 0;
	for(var i in comments_array){
	    for(var n = 0;n < comments_array[i].length;n++){
	        if(n == 0){
	            comments_html += '<div style="padding-bottom:3px;"><a href="'+i+'#comment">'+comments_array[i][n]["entry_title"]+'</a></div>';
	        }
	        now_html = '&nbsp;&nbsp;&nbsp;⇒ '+comments_array[i][n]["comment_name"]+" ("+getDateTimeFormat(comments_array[i][n]["date"], false)+")";
	        if(comments_array[i][n]["comment_res"] == false){
	            comments_html += '<span style="color:gold;">'+now_html+'</span><br>';
	        }else{
	            comments_html += now_html+"<br>";
	        }
	    }
	    j++;
	    if(j < list_length){
	        comments_html += "<br>";
	    }
	}
	document.getElementById("new_comment_area").innerHTML = comments_html;
	/** 変数を初期化 **/
	comments_html = null;
	comment_list = null;
	comments_array = null;
	now_html = null;
}
