/*
 * カートへ商品情報を送信してポップアップ表示する。
 * 
 * @param int   commodity_code 商品コード
 * @param array options        商品オプション {nec1:1,opt1:2 ... }
 */
function popupCart(commodity_code, options) {
	//	変数定義
	var hid = null;	//	追加hidden用
	
	//	必須パラメータ
	document.post_to_cart.commodity_code.value = commodity_code;	//	商品コード
	
	//	オプションの設定
	if(options instanceof Object) {
		for(var k in options) {
			hid = document.createElement("input");
			hid.type = "hidden";
			hid.name = k;
			hid.value = options[k];
			
			document.post_to_cart.appendChild(hid);
		}
	}
	
	//	ウィンドウを開いて値を送信
	window.open("about:blank", "wndCart", "width=590,height=600,scrollbars=yes");
	document.post_to_cart.target = "wndCart";
	document.post_to_cart.submit();
}
