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