//---------------------------------------------
//display head 
function display_df1() {
	document.write('<table class="' + tgm_tclass  + '" width="' + tgm_width + '">');
	for(var i = 0; i < tgm_no_stories && i < ch.articles.length; i++ ) {
		document.write('<tr><td width="'+tgm_width+'">');	
		document.write('<span class="headline">&#8226;&nbsp;<a target="_blank" href="' + ch.articles[i].article_url + '">' + ch.articles[i].head + '</a></span></td></tr>');
	}
	document.write('</table>');

}
