function writeHeadlinesBAK(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: maroon" 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);
}
}


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: maroon" 		target="_blank" href="' + article[i].url + '">';
		tempString += article[i].headline_text + '</a>&nbsp;&ndash;&nbsp;'
		tempString += article[i].source + '<br>';
		tempString += article[i].harvest_time + '</p>';
		document.write(tempString);
	}
}