function feedsection(obj) { d("SectionTitle",'

' + sectionName + '

'); w('
'); for (var i = 0; i < obj.count ; i++) { if (i == obj.count) break; var ent = obj.value.items[i]; var url = ent.link; var pDate = ent.pubDate; var author = ent.author.name; var re = /<\S[^>]*>/g; var pCnt = ent.summary.content.replace(re, ""); var title = l(url, ent.title,false); var rmLink = l(url,"",false); var mnth = pDate.substring(5,7); var ma = a(); w('
  • '); d("FeedPeekTitle",title); w('
  • '); //d("FeedPeekAuthor", ma[parseInt(mnth,10)] + ' ' + pDate.substring(8,10) + ' - ' + author); if (i==0){ d("FeedPeekSummary",pCnt + '...' + rmLink); w('
    '); w('
    '); w(''); w(''); w('
    '); w('
    ');// MySectionRight w('
    '); w(''); } } w('
    '); w(' More... '); w(''); w('
    ');// MySectionLeft w('
    ');// MySectionBelow w('
    ');// MySection }