/*************************************************
* マリークヮントオンラインショップ ユーザ
* 商品一覧
* 
* @author	K.ASAKURA <BrainWave>
* @version	2006.10.14
* @require	item_list.js
*************************************************/

/*************************************************
  カテゴリ変更
*************************************************/

function changeIndex (indexCode) {
	var action = './item_list.php?viewIndexCd=' + indexCode;
	document.indexListForm.action = action;
	document.indexListForm.indexFlag.value = '2';
	document.indexListForm.submit();
}

/*************************************************
  カテゴリ変更
*************************************************/

function setShoppingBag () {
	document.itemForm.submit();
}

/*************************************************
  商品お知らせメール登録ウィンドウ表示
*************************************************/

function openInformsStock (itemCd) {
	var url   = '../members/info_arrival/informs_stock.php?informsItemCd=' + itemCd;
	//var name  = 'informs_stock';
	var name  = '';
	var style = 'width=468, height=440';
	win = window.open(url, name, style);
}