  if (!early_exit)
  {
// Print out the table containing the headlines
  document.writeln('<TABLE BORDER='+table_border+' BGCOLOR="'+table_bgcolor+'" WIDTH='+width+' CELLPADDING=2 CELLSPACING=0>');
  document.writeln('<TR><TD><CENTER><TABLE class="'+table_class+'"BGCOLOR="'+table_bgcolor+'" CELLPADDING='+cell_padding+' CELLSPACING='+cell_spacing+'  WIDTH="100%">');

  if (heading_display == "Yes"){
    // Print a new category heading
    document.writeln('<TR BGCOLOR="'+heading_bgcolor+'"><TD>');
    document.writeln('<div class="'+heading_class+'">');
    document.writeln('<B>'+webfeed_heading+'</B></div></TD></TR>');
  }
  // Start loop for articles
  if (numberofarticles > showarticles) { numberofarticles = showarticles; }
    for (var counter=0; counter < numberofarticles; counter++)
    {

    // Print out the headline
    document.writeln("<TR BGCOLOR='"+headline_bgcolor+"'><TD>");
	document.writeln("<A HREF='"+global_article[counter].url+"' class='"+headline_class+"'>");
    document.writeln(global_article[counter].headline_text+'</A><br>');

   if (show_leadin == "No") { 
    // Print out reg/sub if appropriate
   }

   else { 
    // Print out reg/sub if appropriate
      document.writeln('<span class="'+leadin_class+'">');
      document.writeln(global_article[counter].leadin+'</span>&nbsp;&nbsp;'); 
   }

    document.writeln('<br><br></TD></TR>');
    } // End of article loop

  document.writeln('</TABLE></CENTER></TD></TR></TABLE></CENTER>');

  } 
