
//スクロールあり。
function openScWin(id, label, price, cnt){
	//alert(label);
	var wObj;
	var wURL = "https://storetool.jp/3803085338/cart.cgi?&ITM=" + id + "&NAM=" + escape(label) + "&PRC=" + price + "&TAX=0&CNT=" + cnt;
	
	wOption = "width=620,height=500,scrollbars=yes";
	wObj = window.open(wURL, "TOTOcart", wOption);
	wObj.focus();
}

function openViewCart(){
	var wObj;
	var wURL = "https://storetool.jp/3803085338/cart.cgi";
	
	wOption = "width=620,height=500,scrollbars=yes";
	wObj = window.open(wURL, "TOTOcart", wOption);
	wObj.focus();
}
