function renderHeadlinesListCustom()
{
	document.write("<table class='wlNewsTable' cellpadding='0' cellspacing='0'>");
	//document.write("	<thead>");
	//document.write("		<tr>");
	//document.write("			<th>Date<font color=red>Sample</font></th>");
	//document.write("			<th>Time</th>");
	//document.write("			<th>Document</th>");
	//document.write("		</tr>");
	//document.write("	</thead>")
	document.write("	<tbody>")

	for (var i=0; i<8; i++) {
		var h = headlines[i];
		var cls = (i%2 == 0) ? "even" : "odd";
		var asxcode = 'DTE';
		if (h.symbol == '') continue;

		document.write("	<tr class='" + cls + "'>");
		document.write("		<td class=\"date\">" + h.date + "</td>");
		document.write("		<td align=left class=\"announcement\"><a target='_blank' href='http://clients.weblink.com.au/clients/dartenergy/article.asp?asx="+ asxcode +"&view=" + h.id + "'>" + h.headline + " </a></td>");
		document.write("	</tr>");

	}
	document.write("	</tbody>")
	document.write("</table>")
}

