function populateBrandList() {
  document.getElementById('brandsection').innerHTML =  '<div id="SearchHolder"></div>';
  var aryBrandHolder = document.getElementById('field_product_brand');
  var sBrandDiv = '<p>Select a Brand from the logos below:</p><table class=brandimagetable width=100%><tr>';
  var j = 0;
  if (aryBrandHolder) {
     //Loops through the brand option list and creates table cells
     for( var i = 1; i < aryBrandHolder.options.length ; i++) {
       sBrandDiv+='<td width=25%><div><a href="/store/search/brand/'+aryBrandHolder.options[i].value+'/"><img src="/themes/logos/'+aryBrandHolder.options[i].value+'-logo.gif"></div><DIV CLASS="BRANDLINK"><span class="navtext">'+aryBrandHolder.options[i].value+'</span></div></a></td>';
       j++;
       if ((j % 5) == 0)
       sBrandDiv+='</tr><tr>';
     }
  }
  sBrandDiv+='</tr></table>';
  if( document.getElementById('SearchHolder') ) {
  document.getElementById('SearchHolder').innerHTML =  sBrandDiv;
  }
}
