function getMostPopular() {

  var objMostPop = {
    0: {href: 'http://www.glennbeck.com/content/articles/article/198/33376/?ck=1', title: 'Healthcare bills passing in the night...'},
    1: {href: 'http://www.glennbeck.com/content/articles/article/198/33275/?ck=1', title: 'Glenn Beck: The Plan'},
    2: {href: 'http://www.glennbeck.com/content/articles/article/198/33257/?ck=1', title: 'Glenn Reveals &quot;The Plan&quot; at Free Rally on Saturday'},
    3: {href: 'http://www.glennbeck.com/content/articles/article/198/33342/?ck=1', title: 'Glenn Beck: Legislating the Redistribution of Wealth'},
    4: {href: 'http://www.glennbeck.com/content/articles/article/198/33374/?ck=1', title: 'The ayes have it!'},
    5: {href: 'http://www.glennbeck.com/content/articles/article/196/33329/?ck=1', title: 'Glenn Beck: The 2,000 pages that will destroy America'},
    6: {href: 'http://www.glennbeck.com/content/articles/article/198/33331/?ck=1', title: 'Glenn Beck: Healthcare bill taxes'},
    7: {href: 'http://www.glennbeck.com/content/articles/article/196/33272/?ck=1', title: 'Glenn\'s interview with Ann Coulter'},
    8: {href: 'http://www.glennbeck.com/content/articles/article/198/14857/?ck=1', title: 'Sarah Palin Bikini Pictures'},
    9: {href: 'http://www.glennbeck.com/content/articles/article/198/3890/?ck=1', title: 'Rob Smith Jr Editorial Cartoon'}
  };
  if (objMostPop===undefined) return false;

  var objTable = document.createElement('table');
  objTable.setAttribute('border', '0');
  objTable.setAttribute('cellpadding', '0');
  objTable.setAttribute('cellspacing', '0');
  objTable.setAttribute('width', '100%');
  var objTbody = document.createElement('tbody');

  for (var i in objMostPop) {
  
    var objTr = document.createElement('tr');
	var objTd = document.createElement('td');
	objTd.setAttribute('valign', 'top');
	var objImg = document.createElement('img');
	objImg.setAttribute('src','/images/common/misc_orangebullet.gif');
	objImg.setAttribute('height', '20');
	objImg.setAttribute('width', '6');
	objTd.appendChild(objImg);
    objTr.appendChild(objTd);
	
	objTd1 = document.createElement('td');
	objTd1.setAttribute('class', 'mostPopularLink');
	objTd1.setAttribute('valign', 'top');
	
	var objHref = document.createElement('a');
    objHref.target = '_top';
    objHref.href = objMostPop[i].href;
    objHref.innerHTML = objMostPop[i].title;
    objTd1.appendChild(objHref);
	
    objTr.appendChild(objTd1);
	objTbody.appendChild(objTr);
  }

	objTable.appendChild(objTbody);
	
  return objTable;

}
