<!--

  function initiCatalogPage()
  {
    var url = document.URL;
    var page_array = url.split("page=");
    var page = page_array[1];
    if (page.substring(0, 1) == "t")
    {
      document.iCatalog.iCatalogPage.value = page;
    }
    else
    {
      if (page != 1 && page%2 == 1)
      {
        document.iCatalog.iCatalogPage.value = "t" + (page-1);
      }
      else
      {
        document.iCatalog.iCatalogPage.value = "t" + page;
      }
    }
  }

  function iCatalogGo()
  {
    var page = document.iCatalog.iCatalogPage.value;
    window.location.replace("/ICPageLookUpAction.do?page=" + page);
    return true;
  }
  
  function printCatPage(page)
  {
    window.open('/icatalog/print/'+page+'.html','Print Catalog Page');
    window.location.replace(document.URL);
    return true;
  }
//-->

