function getMostPopular() {

  var objMostPop = {
    0: {href: 'http://www.deactivated.rushlimbaugh.com/home/daily/site_020110/content/01125111.guest.html', title: 'Did Pelosi Use a Government Plane to Chauffeur Her Family?'},
    1: {href: 'http://www.deactivated.rushlimbaugh.com/home/daily/site_020510/content/01125104.guest.html', title: 'Stack of Stuff Quick Hits Page'},
    2: {href: 'http://www.deactivated.rushlimbaugh.com/home/daily/site_020510/content/01125103.guest.html', title: 'Rush\'s Total Stack of Stuff - 02.05.10'},
    3: {href: 'http://www.deactivated.rushlimbaugh.com/home/daily/site_020110/content/01125112.guest.html', title: 'Lech Walesa\'s Warning for America'},
    4: {href: 'http://www.deactivated.rushlimbaugh.com/home/daily/site_081409/content/01125111.guest.html', title: 'Heed Ronald Reagan\'s Warning'},
    5: {href: 'http://www.deactivated.rushlimbaugh.com/home/daily/site_020310/content/01125109.guest.html', title: 'Rush Drops Bomb in Fox Interview'},
    6: {href: 'http://www.deactivated.rushlimbaugh.com/home/daily/site_020510/content/01125102.guest.html', title: 'Audio Page: February 5, 2010'},
    7: {href: 'http://www.deactivated.rushlimbaugh.com/home/daily/site_020510/content/01125111.guest.html', title: 'The Euro\'s Disaster Could Happen Here Thanks to Obama\'s Deficits'},
    8: {href: 'http://www.deactivated.rushlimbaugh.com/home/daily/site_020110/content/01125110.guest.html', title: 'Banana Republic: Robert Gibbs Tries, Executes KSM Before Trial'},
    9: {href: 'http://www.deactivated.rushlimbaugh.com/home/daily/site_020210/content/01125107.guest.html', title: 'Rush Talks with Miss America 2010'}
  };
  if (objMostPop===undefined) return false;

  var objTable = document.createElement('table');
  objTable.id = 'list_transcripts';
  objTable.border = '0';
  objTable.cellPadding ='0';
  objTable.cellSpacing = '0';
  objTable.width = '100%';  
  var objTbody = document.createElement('tbody');
  var objTr = document.createElement('tr');
  var objTd = document.createElement('td');
  objTd.id = 'list_transcripts_text';
  var objOl = document.createElement('ol');
  objOl.id = 'mostPopularLinksList';

  for (var i in objMostPop) {
    var objLi = document.createElement('li');
    var objHref = document.createElement('a');
    objHref.target = '_top';
    objHref.href = objMostPop[i].href;
    objHref.innerHTML = objMostPop[i].title;
    objLi.appendChild(objHref);
    objOl.appendChild(objLi);
  }

  objTd.appendChild(objOl);
  objTr.appendChild(objTd);
  objTbody.appendChild(objTr);
  objTable.appendChild(objTbody);

  return objTable;

}
