/**
 * function of ecs.
 * write material list.
 */
function write_ecs_511(list_count, associate_id)
{
	var UrlArray = new Array(
	<!--$$URL_ARRAY$$-->
      "B002ZFGZY8",
      "B002ZFGZVG",
      "B002ZFGZXO",
      "B002TEYRT0",
      "B001NABQ2M",
      "B001V9KBSA",
      "B0030FZU6G",
      "B0031MNLXC",
      "B002R2CBBK",
      "B002VOX8SO",
<!--$$URL_ARRAY$$-->
	  ""
	);

	var ImgArray = new Array(
	<!--$$IMG_ARRAY$$-->
      "http://ecx.images-amazon.com/images/I/41WlUNGlkEL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/41PpnJzOdRL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/41picmPo5pL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/6155VGySTsL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/512RVDXnDQL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/41lxFL2xIYL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/5154TsWhliL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/41krDsbYmoL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/61NtJX56wnL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/510-38abIeL._SL75_.jpg",
<!--$$IMG_ARRAY$$-->
	  ""
	);

	var TitleArray = new Array(
	<!--$$TITLE_ARRAY$$-->
      "アメトーークDVD⑨[DVD]",
      "アメトーークDVD⑦[DVD]",
      "アメトーークDVD⑧[DVD]",
      "劇場版 天元突破グレンラガン 螺巌篇 【完全生産限定版】 [DVD]",
      "ウルヴァリン：X-MEN ZERO ＜2枚組特別編＞〔初回生産限定：デジタル・コピー付〕  [DVD]",
      "グラン・トリノ [DVD]",
      "SOFT ON DEMAND 15周年記念BOX 15枚組 [DVD]",
      "しんぼる [DVD]",
      "侍戦隊シンケンジャー 銀幕版 天下分け目の戦(特別限定版) [DVD]",
      "プリズン・ブレイク ファイナル・ブレイク [DVD]",
<!--$$TITLE_ARRAY$$-->
	  ""
	);

	if (list_count > UrlArray.length-1) {
		list_count = UrlArray.length-1;
	}

	document.write(
		"<div class=\"bp-ecs\">"
	);

	for (n = 0; n < list_count; n++) {
		var url = "http://www.amazon.co.jp/exec/obidos/ASIN/" + UrlArray[n] + "/" + associate_id + "/ref=nosim/";

		document.write(
			"<div class=\"bp-ecs-item\">"+
			"<a href=\"" + url + "\" target=\"_blank\">" +
			"<img src=\"" + ImgArray[n] + "\">"+
			"</a>"+
			"<div class=\"bp-ecs-product-detail\">"+
			"<a href=\"" + url + "\" target=\"_blank\">" + TitleArray[n] + "</a>"+
			"</div>"+
			"</div>"+
			"<br clear=\"both\">"
		);
	}

	document.write(
		"<div class=\"bp-ecs-banner\"><a href=\"http://www.blogpeople.net/affilist/\" target=\"_blank\"><img src=\"http://www.blogpeople.net/ecs/images/banner.gif\" alt=\"BlogPeople ecs\" style=\"border:none;\"></a></div>"+
		"<div class=\"bp-ecs-poweredby\"><a href=\"http://member.blogpeople.net/click/?pid=380\" target=\"_blank\">Powered by BlogPeople</a></div>"+
		"</div>"
	);
}

