// JavaScript Document
function YahooSections(ar)
{
var strIDs = '';
for (var i=1;i<=ar.length-1;i++)
  {
  if (ar[i].sURL != null)
    {
    strIDs += '<a href="' + unescape(ar[i].sURL.replace('/cgi-bin/ss000001.pl?SECTIONID=','/acatalog/')).replace('&','?') + '"><span class="yahoosection">' + ar[i].sName + '</span></a>';
      {
      if (ar[i].pChild)
        {
        for (var j=1;j<=ar[i].pChild.length;j++)
          {
          if (ar[i].pChild[j].sURL != null)
            {
            strIDs += '<span class="yahoochild">- <a href="' + unescape(ar[i].pChild[j].sURL.replace('/cgi-bin/ss000001.pl?SECTIONID=','/acatalog/')).replace('&','?') + '">' + ar[i].pChild[j].sName + '</a></span>';
            }
          }
        }
      }
    strIDs += ''
    }
  }
return strIDs
}