// JavaScript Document
function amazonTbl() {
	var Rnd1,Rnd2 ;
	var Book = new Array(10);
	Book[0] = "477911182X";		//木を植えた男
	Book[1] = "4540063510";		//火のある暮らしのはじめ方
	Book[2] = "4087202194";		//いちばん大事なこと
	Book[3] = "4121012380";		//日本の樹木−都市化社会の生態誌
	Book[4] = "4094600701";		//森の思想が人類を救う
	Book[5] = "4829900229";		//樹皮ハンドブック
	Book[6] = "4537203544";		//樹木図鑑−葉・実・樹皮で確実にわかる
	Book[7] = "4635063232";		//葉っぱ博物館
	Rnd1 = Math.floor(Math.random() * 8);
	for (Rnd2 = Rnd1 ; Rnd2 == Rnd1 ; ) {
	  Rnd2 = Math.floor(Math.random() * 8); 
	}
	document.write("<table width='100%' border='0' cellspacing='0' cellpadding='0'><tr><td>");
	document.write("<iframe src='http://rcm-jp.amazon.co.jp/e/cm?t=forestassocia-22&o=9&p=8&l=as1&asins=");
	document.write(Book[Rnd1]);
	document.write("&fc1=000000&IS2=1&lt1=_blank&lc1=0000FF&bc1=000000&bg1=FFFFFF&f=ifr' style='width:120px;height:240px;' scrolling='no' marginwidth='0' marginheight='0' frameborder='0'></iframe></td><td>");
	document.write("<iframe src='http://rcm-jp.amazon.co.jp/e/cm?t=forestassocia-22&o=9&p=8&l=as1&asins=");
	document.write(Book[Rnd2]);
	document.write("&fc1=000000&IS2=1&lt1=_blank&lc1=0000FF&bc1=000000&bg1=FFFFFF&f=ifr' style='width:120px;height:240px;' scrolling='no' marginwidth='0' marginheight='0' frameborder='0'></iframe>");
	document.write("</td></tr></table>");
}