// JavaScript Document
function viewSubProduct(catId, pId)
{
	with (window.document.frmProductDetail) {
		if (cboSubProduct.selectedIndex == 0) {
			window.location.href = 'index.php';
		} else {
			window.location.href = 'index.php?c=' + catId + '&p=' + pId + '&spdId=' + cboSubProduct.options[cboSubProduct.selectedIndex].value;
		}
	}
}
