// define product list link
function productList(pSubCatcode)
{
  // for xml version
  //window.location.href = "productindex.php?subcatcode=" + pSubCatcode;
  //window.location.href = "main_products.php?subcatcode=" + pSubCatcode + 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;
  
  window.location.href = "main_news.php?page=" + selectPage;
}

// define Detail page link
function newDetail(pNewsID)
{
  window.location.href = "detail_new.php?nID=" + pNewsID;
}