function getMostPopular() {

  var objMostPop = {
    0: {href: 'http://www.glennbeck.com/content/articles/article/198/32792/?ck=1', title: 'Glenn in recovery'},
    1: {href: 'http://www.glennbeck.com/content/articles/article/198/14857/?ck=1', title: 'Sarah Palin Bikini Pictures'},
    2: {href: 'http://www.glennbeck.com/content/articles/article/198/32789/?ck=1', title: 'Picture of the Day - November 5, 2009'},
    3: {href: 'http://www.glennbeck.com/content/articles/article/198/3890/?ck=1', title: 'Rob Smith Jr Editorial Cartoon'},
    4: {href: 'http://www.glennbeck.com/content/articles/article/201/32774/?ck=1', title: 'Favorite new show for Glenn?'},
    5: {href: 'http://www.glennbeck.com/content/articles/article/198/32742/?ck=1', title: 'Picture of the Day - November 4, 2009'},
    6: {href: 'http://www.glennbeck.com/content/articles/article/198/32770/?ck=1', title: 'Geithner pressed by...David Gregory?'},
    7: {href: 'http://www.glennbeck.com/content/articles/article/198/32776/?ck=1', title: 'Glenn Beck: 2 out of 3 ain\'t bad'},
    8: {href: 'http://www.glennbeck.com/content/articles/article/198/32722/?ck=1', title: 'Glenn Beck: More Gore hypocrisy'},
    9: {href: 'http://www.glennbeck.com/content/articles/article/196/32772/?ck=1', title: 'Bachmann\'s plea'}
  };
  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;

}
