// JavaScript Document
function selProduct(myFlg)
{
	with (window.document.frmSelectProduct) {
		var pId;

	switch (myFlg) {
		case 0:
			pId = colorSelector.options[colorSelector.selectedIndex].value ;
			if (pId) { window.location.href = 'index.php?p=' + pId + '#content'; }
			break;
		case 1:
			pId = pprSelector.options[pprSelector.selectedIndex].value ;
			if (pId) { window.location.href = 'index.php?p=' + pId + '#content'; }
			break;
		case 2:
			pId = fldSelector.options[fldSelector.selectedIndex].value ;
			if (pId) { window.location.href = 'index.php?p=' + pId + '#content'; }
			break;
		case 3:
			pId = pageSelector.options[pageSelector.selectedIndex].value ;
			if (pId) { window.location.href = 'index.php?p=' + pId + '#content'; }
			break;
	}
	}
}

