<!--

	var m_g = new Array();
	var m_g_txt = new Array();
	var m_p = new Array();
	var m_p_txt = new Array();

	m_g.push("0101");
	m_g_txt.push("ミニハンカチ");
	m_g.push("0102");
	m_g_txt.push("ハンドタオル");
	m_g.push("0103");
	m_g_txt.push("フェイスタオル");
	m_g.push("0104");
	m_g_txt.push("スポーツタオル");
	m_g.push("0105");
	m_g_txt.push("バスタオル");
	m_g.push("0107");
	m_g_txt.push("タオルマフラー");
	m_g.push("0106");
	m_g_txt.push("上記以外");
	m_g.push("0201");
	m_g_txt.push("20糸使用生地");
	m_g.push("0202");
	m_g_txt.push("30糸使用生地");
	m_g.push("0203");
	m_g_txt.push("上記以外");
	m_g.push("0301");
	m_g_txt.push("綿100%");
	m_g.push("0302");
	m_g_txt.push("ポリエステル100%");
	m_g.push("0303");
	m_g_txt.push("上記以外");
	m_g.push("0401");
	m_g_txt.push("75×75（標準）");
	m_g.push("0402");
	m_g_txt.push("150×75（長）");
	m_g.push("0403");
	m_g_txt.push("30×75（短）");
	m_g.push("0404");
	m_g_txt.push("上記以外");
	m_g.push("0501");
	m_g_txt.push("コンパス");
	m_g.push("0502");
	m_g_txt.push("シャンタン");
	m_g.push("0503");
	m_g_txt.push("上記以外");

	m_p.push("0101");
	m_p_txt.push("染料ベタ");
	m_p.push("0102");
	m_p_txt.push("染料一般");
	m_p.push("0103");
	m_p_txt.push("顔料ベタ");
	m_p.push("0104");
	m_p_txt.push("顔料一般");
	m_p.push("0105");
	m_p_txt.push("上記以外");
	m_p.push("0201");
	m_p_txt.push("本染め");
	m_p.push("0202");
	m_p_txt.push("プリント");
	m_p.push("0203");
	m_p_txt.push("上記以外");
	m_p.push("0301");
	m_p_txt.push("染抜き");
	m_p.push("0302");
	m_p_txt.push("プリント");
	m_p.push("0303");
	m_p_txt.push("上記以外");
	m_p.push("0401");
	m_p_txt.push("ジャガード");
	m_p.push("0402");
	m_p_txt.push("刺繍");
	m_p.push("0403");
	m_p_txt.push("上記以外");
	m_p.push("0501");
	m_p_txt.push("プリント");
	m_p.push("0502");
	m_p_txt.push("上記以外");

	function cgGoods(gcd){
		var i;
		var buf = "";
		var l_g = new Array();
		var l_g_txt = new Array();
		var l_p = new Array();
		var l_p_txt = new Array();

		with(document.forms[0]){

			for(i=0; i<m_g.length; i++){
				buf = m_g[i].substr(0,2);
				if(buf == gcd){
					l_g.push(m_g[i]);
					l_g_txt.push(m_g_txt[i]);
				}
			}

			for(i=0; i<m_p.length; i++){
				buf = m_p[i].substr(0,2);
				if(buf == gcd){
					l_p.push(m_p[i]);
					l_p_txt.push(m_p_txt[i]);
				}
			}

			goods_detail.options.length=l_g.length + 1;
			goods_detail.options[0].value="";
			goods_detail.options[0].text="お選び下さい";

			pro.options.length=l_p.length + 1;
			pro.options[0].value="";
			pro.options[0].text="お選び下さい";

			for(i=0; i<l_g.length; i++){
				goods_detail.options[i+1].value=l_g[i];
				goods_detail.options[i+1].text=l_g_txt[i];
			}
			goods_detail.selectedIndex = 0;

			for(i=0; i<l_p.length; i++){
				pro.options[i+1].value=l_p[i];
				pro.options[i+1].text=l_p_txt[i];
			}
			pro.selectedIndex = 0;

		}
	}

// -->