function getMostPopular() {

  var objMostPop = {
    0: {href: 'http://www.rushlimbaugh.com/home/daily/site_111709/content/01125120.guest.html', title: 'Rush Interviews Governor Sarah Palin'},
    1: {href: 'http://www.rushlimbaugh.com/home/daily/site_111609/content/01125107.guest.html', title: 'Scared State-Run Media Elites Go Bonkers Over Sarah Palin\'s Book'},
    2: {href: 'http://www.rushlimbaugh.com/home/daily/site_111709/content/01125112.guest.html', title: 'Hate-Filled Liberals Distort Our Sarah Palin Interview Instantly!'},
    3: {href: 'http://www.rushlimbaugh.com/home/daily/site_111909/content/01125108.guest.html', title: 'Algore Photoshops Fake Earth'},
    4: {href: 'http://www.rushlimbaugh.com/home/daily/site_111809/content/01125104.guest.html', title: 'Stack of Stuff Quick Hits Page'},
    5: {href: 'http://www.rushlimbaugh.com/home/daily/site_111309/content/01125112.guest.html', title: 'Mark Halperin Swerves Into Truth'},
    6: {href: 'http://www.rushlimbaugh.com/home/daily/site_111909/content/01125110.guest.html', title: 'Katie Calls to Take Issue with the Fact of the Happily Unemployed'},
    7: {href: 'http://www.rushlimbaugh.com/home/daily/site_111609/content/01125108.guest.html', title: 'A Little Bit on This Bow Business'},
    8: {href: 'http://www.rushlimbaugh.com/home/daily/site_111609/content/01125106.guest.html', title: 'Eric Holder Consulted His Wife and Brother, But Not President Obama?'},
    9: {href: 'http://www.rushlimbaugh.com/home/daily/site_111709/content/01125111.guest.html', title: 'America Reacts to Palin Interview'}
  };
  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;

}
