function getMostPopular() {

  var objMostPop = {
    0: {href: 'http://www.glennbeck.com/content/articles/article/198/10058/?ck=1', title: 'Glenn Beck: Polar Nonsense'},
    1: {href: 'http://www.glennbeck.com/content/articles/article/196/10062/?ck=1', title: 'Shatner v. Glenn'},
    2: {href: 'http://www.glennbeck.com/content/articles/article/198/10002/?ck=1', title: 'Glenn Beck: Plasma\'s for Polar Bears'},
    3: {href: 'http://www.glennbeck.com/content/articles/article/196/10060/?ck=1', title: 'Glenn Beck: Modern Dating'},
    4: {href: 'http://www.glennbeck.com/content/articles/article/198/10086/?ck=1', title: 'Picture of the Day - May 16, 2008'},
    5: {href: 'http://www.glennbeck.com/content/articles/article/196/9998/?ck=1', title: 'Glenn Beck: The Woman who can\'t Forget'},
    6: {href: 'http://www.glennbeck.com/content/articles/article/198/9949/?ck=1', title: 'Glenn\'s definition of a conservative'},
    7: {href: 'http://www.glennbeck.com/content/articles/article/198/9856/?ck=1', title: 'Picture of the Day - May 12, 2008'},
    8: {href: 'http://www.glennbeck.com/content/articles/article/198/9875/?ck=1', title: 'Ted Bell\'s NICK OF TIME - Excerpt 5'},
    9: {href: 'http://www.glennbeck.com/content/articles/article/196/9951/?ck=1', title: 'Glenn Beck: Rising star'}
  };
  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;

}
