// define product list link
function productList(pSubCatcode)
{
  // for xml version
  //window.location.href = "productindex.php?subcatcode=" + pSubCatcode;
  //window.location.href = "main_products.php?subcatcode=" + SubCatcode + encodeURIComponent('&') + "page=";
  window.location.href = "main_products.php?subcatcode=" + pSubCatcode + "&page=";
}

// define page link
function loadPage()
{
  var objSelect = document.getElementById("selectPage");
  var selectPage= objSelect.options[objSelect.selectedIndex].text;

  var objSubCat = document.getElementById("subcatCD");
  var SubCatcode = objSubCat.value;
  
  //window.location.href = "main_products.php?subcatcode=" + SubCatcode + encodeURIComponent('&') + "page=" + selectPage;
  window.location.href = "main_products.php?subcatcode=" + SubCatcode + "&page=" + selectPage;
}

// define page link
function loadPage2()
{
  var objSelect = document.getElementById("selectPage2");
  var selectPage= objSelect.options[objSelect.selectedIndex].text;

  var objSubCat = document.getElementById("subcatCD");
  var SubCatcode = objSubCat.value;
  
  //window.location.href = "main_products.php?subcatcode=" + SubCatcode + encodeURIComponent('&') + "page=" + selectPage;
  window.location.href = "main_products.php?subcatcode=" + SubCatcode + "&page=" + selectPage;
}

// define Detail page link
function productDetail(pProdID)
{
  window.location.href = "detail_product.php?pID=" + pProdID;
}