/**
 * function of ecs.
 * write material list.
 */
function write_ecs_76(list_count, associate_id)
{
	var UrlArray = new Array(
	<!--$$URL_ARRAY$$-->
      "B005DKLPQ0",
      "B0000C24KC",
      "B00007KWHP",
      "B00007LTI9",
      "B00004UDEA",
      "B0052FG750",
      "B000002LRJ",
      "B004GPEB6O",
      "B00004UDE9",
      "B002BAODSC",
<!--$$URL_ARRAY$$-->
	  ""
	);

	var ImgArray = new Array(
	<!--$$IMG_ARRAY$$-->
      "http://ecx.images-amazon.com/images/I/51DvnGbFFrL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/415%2BuP-xOfL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/519XTfQ4f1L._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/3144HDKK4DL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/51-1aLhkSqL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/41BtXxACGLL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/411ZERCFZ3L._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/617HIbqII%2BL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/41RvFJPyG2L._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/51MZ204Q%2BWL._SL75_.jpg",
<!--$$IMG_ARRAY$$-->
	  ""
	);

	var TitleArray = new Array(
	<!--$$TITLE_ARRAY$$-->
      "Complete",
      "You Must Believe in Spring",
      "Fragile",
      "Close to the Edge",
      "Curtis Live (Dlx)",
      "Collection",
      "Loveless",
      "D.R.U.G.S.",
      "Curtis (Dlx)",
      "500 Days of Summer",
<!--$$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>"
	);
}


