function getMostPopular() {

  var objMostPop = {
    0: {href: 'http://www.glennbeck.com/content/articles/article/198/19734/?ck=1', title: 'Glenn Beck: History of the Middle East in a Couple of Minutes'},
    1: {href: 'http://www.glennbeck.com/content/articles/article/198/19717/?ck=1', title: 'The Return of Glenn!'},
    2: {href: 'http://www.glennbeck.com/content/articles/article/200/19594/?ck=1', title: 'Glenn Beck Story Pulled Because of his Mormon Faith'},
    3: {href: 'http://www.glennbeck.com/content/articles/article/198/14857/?ck=1', title: 'Sarah Palin Bikini Pictures'},
    4: {href: 'http://www.glennbeck.com/content/articles/article/198/19740/?ck=1', title: 'Glenn Beck: Valkyrie'},
    5: {href: 'http://www.glennbeck.com/content/articles/article/198/19672/?ck=1', title: 'Picture of the Day - January 05, 2009'},
    6: {href: 'http://www.glennbeck.com/content/articles/article/198/19742/?ck=1', title: 'Glenn\'s kids for sale?'},
    7: {href: 'http://www.glennbeck.com/content/articles/article/198/19696/?ck=1', title: 'Franken to be declared Senate victor in Minnesota'},
    8: {href: 'http://www.glennbeck.com/content/articles/article/198/19457/?ck=1', title: 'Glenn Beck returns to Columbus on News Talk 610 WTVN'},
    9: {href: 'http://www.glennbeck.com/content/articles/article/198/19507/?ck=1', title: 'Why does Glenn hate this Christmas song?'}
  };
  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;

}
