// JavaScript Document
function AdleySectionList(pItem)
{
var strIDs = '<div class="ASectionListSpan"><a title="Brochure" class="ASectionList" href="/cgi-bin/ss000001.pl?SECTIONID=index.html&NOLOGIN=1"><b>Brochure Sections</b></a></div>';
{
for (var i = 1; i <= pItem.length; i++)
{
strIDs += '<div class="ASectionListSpan"><a title="'+ pItem[i].sName + '" class="ASectionList" href=' + pItem[i].sURL + '>'+ pItem[i].sName + '</a></div>';
}
}

return strIDs
}
