var GoogleAjaxFeedApi_maregAndSort_override = function(name)
{
	this.name = name;
}
GoogleAjaxFeedApi_maregAndSort_override.prototype = new GoogleAjaxFeedApi_maregAndSort();

GoogleAjaxFeedApi_maregAndSort_override.prototype.make_tag = function()
{
	this.tag = "";
	for(var y = 0, cnt = this.arrayMergeRss.length; y < cnt; y++)
	{
		this.tag+=	"【feed title】"			+ this.arrayRssUrl[ this.arrayMergeRss[y].rssNo ].title			+ "<br />\n" +
					"【feed link】"				+ this.arrayRssUrl[ this.arrayMergeRss[y].rssNo ].link			+ "<br />\n" +
					"【feed description】"		+ this.arrayRssUrl[ this.arrayMergeRss[y].rssNo ].description	+ "<br />\n" +
					"【feed author】"			+ this.arrayRssUrl[ this.arrayMergeRss[y].rssNo ].author		+ "<br />\n" +
					"【日付】"																					+
					this.arrayMergeRss[y].year	+ "/"															+
					this.arrayMergeRss[y].month	+ "/"															+
					this.arrayMergeRss[y].day	+ " "															+
					this.arrayMergeRss[y].time																	+ "<br />\n" +
					"【" + this.arrayRssUrl[ this.arrayMergeRss[y].rssNo ].siteName + "】"						+
					'<a href="' + this.arrayMergeRss[y].link + '" target="_blank">'								+
					this.arrayMergeRss[y].title + "</a>"														+ "<br />\n" + 
					'●本文：'	+ this.arrayMergeRss[y].content + "</a>"										+ "<br />\n" + 
					'●概要：'	+ this.arrayMergeRss[y].contentSnippet + "</a>"									+ "<br />\n" + 
					"<hr />\n";
	}
	document.getElementById(this.idView).innerHTML = this.tag;
}