	//INPUT TEXT のカウンター
	//@param nGoods 検索対象オブジェクトの名前
	//@param nIncrement +1:カウントUP,-1:カウントダウン
	function counter(nGoods,nIncrement){
		eval("vCount = document.form1.txtCount"+ nGoods + ".value;");
		if(isNaN(parseInt(vCount))){
		  vCount = 0;
		}
		vCount = parseInt(vCount) + nIncrement;
		if(parseInt(vCount) <= 0){
		  vCount = "";
		} else if(parseInt(vCount) == 1000000){
		  vCount = 999999;
		}
		eval("document.form1.txtCount" + nGoods + ".value = vCount;");
	}

	//カウンター上：通常
	//@param nCnt 行番号
	function nomaltop(nCnt){
		eval("document.form1.counttop" + nCnt + ".src = '/forest/docs/images/count_top.gif';");
	}
	//カウンター上：マウスが乗った時
	//@param nCnt 行番号
	function hightop(nCnt){
		eval("document.form1.counttop" + nCnt + ".src = '/forest/docs/images/count_top_on.gif';");
	}
	//カウンター上：クリックされた時
	//@param nCnt 行番号
	function pushtop(nCnt){
		eval("document.form1.counttop" + nCnt + ".src = '/forest/docs/images/count_top_click.gif';");
	}
	//カウンター下：通常
	//@param nCnt 行番号
	function nomalbtm(nCnt){
		eval("document.form1.countbtm" + nCnt + ".src = '/forest/docs/images/count_bottom.gif';");
	}
	//カウンター下：マウスが乗った時
	//@param nCnt 行番号
	function highbtm(nCnt){
		eval("document.form1.countbtm" + nCnt + ".src = '/forest/docs/images/count_bottom_on.gif';");
	}
	//カウンター下：クリックされた時
	//@param nCnt 行番号
	function pushbtm(nCnt){
		eval("document.form1.countbtm" + nCnt + ".src = '/forest/docs/images/count_bottom_click.gif';");
	}


