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