function writeHeadlines(numHeadlines,title){
      document.write('<div style="font-weight: bold">'  +  '</div>');
//      document.write('');

      for(i=0; i<numHeadlines; i++){
         tempString='<br>';
         tempString = '<a style="font-weight: bold; " +  "color: maroon" target="_blank" href="' +  article[i].url + '">';
         tempString += article[i].headline_text +   '</a><br>';
  tempString += article[i].source + '&nbsp;&nbsp;&nbsp;';
         tempString += article[i].harvest_time;
tempString = tempString+'';
         document.write(tempString+'<br>');
      }
   }
