nc_cgi_url="http://news-kyokutou.hp.infoseek.co.jp/cgi-bin/nc/";

function cmnt_list(){
	no = 6;
	//if ( no > data.length ) no = data.length;
	str = '<A HREF="' + nc_cgi_url + 'comment.cgi">感想最新</A> ';
	for (i = 0; i < no; i ++ ) {
		if ( data[i][0] == "" ) break;

		title = data[i][2];
		if ( title.length >= 6 ) title = title.substring( 0, 6 ) + "..";

		name = data[i][3];
		if ( name.length >= 6 ) name = name.substring( 0, 6 ) + "..";

		time = data[i][1].substring( 8, 10 ) + "-" + data[i][1].substring( 11, 16 );

		str += "<A HREF=\"" + nc_cgi_url + "comment.cgi?action=view&key=" + data[i][0] + "\" TITLE=\"" + data[i][2] + "\">■</A>";
		str += time + " " + title + "（" + name + "） ";
	}
	document.writeln( str );
}

function tb_list(){
	no = 6;
	//if ( no > data_tb.length ) no = data_tb.length;
	str = '<A HREF="' + nc_cgi_url + 'trackback.cgi">トラバ最新</A> ';
	for (i = 0; i < no; i ++ ) {
		if ( data_tb[i][0] == "" ) break;

		title = data_tb[i][2];
		if ( title.length >= 6 ) title = title.substring( 0, 6 ) + "..";

		name = data_tb[i][3];
		if ( name.length >= 6 ) name = name.substring( 0, 6 ) + "..";

		time = data_tb[i][1].substring( 8, 10 ) + "-" + data_tb[i][1].substring( 11, 16 );

		str += "<A HREF=\"" + nc_cgi_url + "trackback.cgi?__mode=view&entry_id=" + data_tb[i][0] + "\" TITLE=\"" + data_tb[i][2] + "\">■</A>";
		str += time + " " + title + "（" + name + "） ";
	}
	document.writeln( str );
}

