function ShowHideResults(index,count,cmpIndex)
{
 var diffCount=count-2;
 var objResultsMain=document.getElementById("divShowHide"+index)
 var objGetShowAllHideAll=document.getElementById("aShowAllHideAll"+index)
 var objGetSearchResTd=document.getElementById("aShowMore"+index)
 var objGetReducedHeightTD=document.getElementById('tdReduceHeight'+cmpIndex)
 var newSpace=''
 var varProduct='products'
 if(count==3)
  varProduct='product'
 if(objResultsMain.style.display=="block")
  objResultsMain.style.display="none"
 else
  objResultsMain.style.display="block"
 
 if(objResultsMain.style.display=="none")
 {
  if(objGetReducedHeightTD!=null)
  {
   objGetReducedHeightTD.height='28px;'
  }
  objGetSearchResTd.innerHTML="("+diffCount+" more "+varProduct+")</font>"
 }
 else
 {
  objGetShowAllHideAll.innerHTML="&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"
  objGetShowAllHideAll.innerHTML="&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"
  objGetShowAllHideAll.innerHTML="&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"
  objGetShowAllHideAll.innerHTML="&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"
  objGetShowAllHideAll.innerHTML="&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"
  objGetShowAllHideAll.innerHTML="&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font class='BlueArial11px'>";
  objGetShowAllHideAll.innerHTML="&nbsp;&nbsp;&nbsp;(collapse selection)</font>" 
 }
}
function HighlightBold(indexLinkButton)
{
 if(indexLinkButton.length>0) {
     if (indexLinkButton < 10)
         indexLinkButton = '0' + indexLinkButton;
     oAlphabetSelected = document.getElementById("ctl00_ContentPlaceHolder1_DLPagination_ctl" + indexLinkButton + "_lbtnNumbers")     
  if (oAlphabetSelected == null || oAlphabetSelected == 'undefined' || oAlphabetSelected == 'null')
      oAlphabetSelected = document.getElementById("ctl00_ContentPlaceHolder1_DLPagination_ctl" + 0 + "_lbtnNumbers")
  if (oAlphabetSelected != null) {
      oAlphabetSelected.style.fontWeight = "bold";
      oAlphabetSelected.style.color = "#000000";
  }  
  var varGetPrevButton=document.getElementById("BtnPrev")
  if (varGetPrevButton != null)
      varGetPrevButton.value = '<<';
  setTimeout('window.scrollTo(0, 0)', 1);
}
}
function SetBreadCrumbDefault(intCount) {
 var varButtonName='';
 var varLButtonName='';
 var varTotalWidth='';
 var intGreaterThanCount = intCount - 1;
 if (intGreaterThanCount < 10)
     intGreaterThanCount = '0' + intGreaterThanCount;
 document.getElementById("ctl00_ContentPlaceHolder1_DLSearchBreadCrumb_ctl" + intGreaterThanCount + "_lblSearchBreadCrumb").innerHTML =
    document.getElementById("ctl00_ContentPlaceHolder1_DLSearchBreadCrumb_ctl" + intGreaterThanCount + "_lbSearchBreadCrumb").innerHTML;
 document.getElementById("ctl00_ContentPlaceHolder1_DLSearchBreadCrumb_ctl" + intGreaterThanCount + "_lbSearchBreadCrumb").innerHTML = '';
 document.getElementById("ctl00_ContentPlaceHolder1_DLSearchBreadCrumb_ctl" + intGreaterThanCount + "_lbSearchBreadCrumb").width = 0 + 'px';
 if (document.getElementById("ctl00_ContentPlaceHolder1_lblResultsCount") != null) {
     document.getElementById("ctl00_ContentPlaceHolder1_lblResultsCount").style.width = 100 + '%';
 } 
}