


function AddCart(cat,n,v){
//カートに入れる
	var txtName1="catn" + cat + v;//商品番号テキストボックス名
	var txtName2="cat" + cat + v;//数量テキストボックス名
	var vName="select" + v;//セレクトボックスの値
	var vnum=document.getElementById(vName).selectedIndex;
	document.getElementById(txtName1).value=n;
	document.getElementById(txtName2).value=vnum;
}


function ChCategory(cat){
	document.cart.action="index.asp?cat=" + cat;
	document.cart.submit();
}

function ViewCart(){
	document.cart.action="cart.asp";
	document.cart.submit();
}

function Gostep1(){
	document.form1.action="step1.asp";
	document.form1.submit();
}

function Gostep2(){
	document.form1.action="step2.asp";
	document.form1.submit();
}

function Gothanks(s){
	//s：送料
	document.form1.action="thanks.asp?sou=" + s;
	document.form1.submit();
}