// JavaScript Document

// 単なる設定
function $(e) { return document.getElementById(e); }

// 商品表示数のプルダウンメニュー変更時
function fncPageSelected(category, type, maker, st, sp1, sp2, ss, pn, ps) {
	if ($("PageDisplay").value != "0") {
		location.href = 'list.php?category='+category+'&type='+type+'&maker='+maker+'&st='+st+'&sp1='+sp1+'&sp2='+sp2+'&ss='+ss+'&pn='+pn+'&pd='+$("PageDisplay").value+'&ps='+ps;
	}
}

