

function headline(date, time, symbol, headline, id)
{
	// Represents a headline object
	this.date = date;
	this.time = time;
	this.symbol = symbol;
	this.headline = headline;
	this.id = id;
}

///// Data values /////
var headlines = new Array();

headlines[0] = new headline('03-02-2012','14:47','BND','Update - Webcast','5186866','','','');
headlines[1] = new headline('31-01-2012','16:11','BND','Quarterly Cashflow Report','5186809','','','');
headlines[2] = new headline('31-01-2012','16:07','BND','Quarterly Activities Report','5186808','','','');
headlines[3] = new headline('31-01-2012','13:01','BND','Maiden Open-Cut Reserve Statement for South Galilee Project','5186789','','','');
headlines[4] = new headline('25-01-2012','9:43','BND','Response to price query','5186714','','','');


///// Render functions /////
// (you can use your own if you like)

function viewArticle(articleID) {
	var urlStr = 'http://clients.weblink.com.au/clients/bandannaenergy/article.asp?view=' + articleID;
	var PopupWin = window.open(urlStr,"viewNews","scrollbars=yes,toolbar=no,directories=no,status=yes,menubar=no,resizable=yes,width=630,height=450")
	PopupWin.focus();
}

function renderHeadlinesList2()
{
	document.write("<table class='wlNewsTable2'>");
	document.write("	<thead>");
//	document.write("		<tr>");
//	document.write("			<th>Date</th>");
//	document.write("			<th></th>");
//	document.write("			<th>Announcement</th>");
//	document.write("		</tr>");
	document.write("	</thead>")
	document.write("	<tbody>")

	for (var i=0; i<headlines.length; i++) {
		var h = headlines[i];
		var cls = (i%2 == 0) ? "even" : "odd";
        var asxcode = 'BND';
		if (h.symbol == '') continue;

		pos = h.headline.indexOf(":");
		//document.write(pos);

		if (pos == '3') continue;


		document.write("	<tr class='" + cls + "'>");
//		document.write("		<td align=left>");
//		document.write("		<td width='50'>" + " " + "</td>");
//		document.write("<td align=left>" + h.date + " " + h.time + <a target='_blank' href='http://clients.weblink.com.au/clients/bandannaenergy/article.asp?asx="+ asxcode +"&view=" + h.id + "'> + h.headline +"</a>");
		document.write("		<td align=left><br>");
		document.write(h.date);
		document.write("		<br>");
		document.write("		<a target='_blank' href='http://clients.weblink.com.au/clients/bandannaenergy/article.asp?asx="+ asxcode +"&view=" + h.id + "'>" + h.headline );

		document.write("		</td>");
		document.write("</td>");
		document.write("</tr>");

	}
	document.write("	</tbody>")
	document.write("</table>")
}

