// Copyright (c) 2003-2005 Y-Times Publications, LLC. All Rights Reserved.
// Duplication is not permitted without written permission of Y-Times Publications, LLC.


function ShowBSells()
{
var FeaturedIndex = new Array;
var elems = 0;
do
{
  idx = Math.floor( Math.random() * Featured.length );
  var IdxFound = false;
  for (i = 0; i < FeaturedIndex.length; i++ )
  {
    if (FeaturedIndex[i] == idx)
    {
      IdxFound = true;
      break;
    }
  }
  if (!IdxFound)
  {
    FeaturedIndex[elems] = idx;
    elems = elems + 1;
  }
} while (FeaturedIndex.length < FeaturedN);

for (i = 0 ; i < FeaturedIndex.length; i++)
    document.write( String(Featured[FeaturedIndex[i]]).replace(/`/gi, "'") );
}
