

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('26 November 2008','16:18','AGD','Results of Meeting','6430981','','','');
headlines[1] = new headline('26 November 2008','16:17','AGD','Chairman`s Address to Shareholders','6430980','','','');
headlines[2] = new headline('31 October 2008','11:08','AGD','Quarterly Cashflow Report','6427709','','','');
headlines[3] = new headline('31 October 2008','11:07','AGD','Quarterly Activities Report','6427707','','','');
headlines[4] = new headline('24 October 2008','15:51','AGD','Notice of Annual General Meeting/Proxy Form','6426236','','','');
headlines[5] = new headline('24 October 2008','15:50','AGD','Annual Report  to shareholders with minor amendments','6426235','','','');
headlines[6] = new headline('23 September 2008','16:08','AGD','Annual Report to shareholders','6421827','','','');
headlines[7] = new headline('18 September 2008','10:58','AGD','New tenements to be acquired in close proximity to Guanaco','6421307','','','');
headlines[8] = new headline('17 September 2008','17:32','AGD','New Vein Structure Discovered in Guanaco, Chile - Amended','6421265','','','');
headlines[9] = new headline('17 September 2008','15:05','AGD','New Vein Structure Discovered in Guanaco, Chile','6421242','','','');
headlines[10] = new headline('8 August 2008','10:49','AGD','Austral Gold Acquires New Tenements and Earn-In','6417040','','','');
headlines[11] = new headline('31 July 2008','12:06','AGD','Quarterly Activities Report','6415871','','','');
headlines[12] = new headline('31 July 2008','12:06','AGD','Quarterly Cashflow Report','6415873','','','');
headlines[13] = new headline('11 July 2008','9:46','AGD','AGD CONFIRMS KEY APPOINTMENTS FOR GUANACO EXPLORATION TEAM','6413473','','','');
headlines[14] = new headline('19 June 2008','12:56','AGD','AGD Commences Stage 1 of the 2008 Drilling in Guanaco','6410772','','','');
headlines[15] = new headline('13 June 2008','9:15','AGD','Austral Gold Commences Stage 1 of the 2008 Drill Campaign','6410111','','','');
headlines[16] = new headline('12 June 2008','13:08','AGD','Appendix 3B','6410046','','','');
headlines[17] = new headline('29 May 2008','12:09','AGD','Chairman`s Address to Shareholders','6408565','','','');
headlines[18] = new headline('28 May 2008','18:28','AGD','Results of Meeting','6408477','','','');
headlines[19] = new headline('28 April 2008','15:59','AGD','Quarterly Activities Report','6404248','','','');
headlines[20] = new headline('28 April 2008','15:58','AGD','Quarterly Cashflow Report','6404250','','','');
headlines[21] = new headline('28 April 2008','15:38','AGD','Notice of General Meeting/Proxy Form','6404242','','','');
headlines[22] = new headline('24 April 2008','17:12','AGD','Heap Leach Resources 14 April Release Ammended','6404004','','','');
headlines[23] = new headline('17 April 2008','12:16','AGD','Director Appointment/Resignation','6403073','','','');
headlines[24] = new headline('14 April 2008','16:45','AGD','Heap Leach Resources at Guanaco','6402625','','','');
headlines[25] = new headline('8 April 2008','9:41','AGD','MMX: Acquisition of Pilbara Iron Ore Project','6401824','','','');
headlines[26] = new headline('8 April 2008','9:26','AGD','Sale of Rocklea Iron Ore Tenement','6401810','','','');
headlines[27] = new headline('13 March 2008','14:04','AGD','Half Year Accounts','6398973','','','');
headlines[28] = new headline('3 March 2008','12:40','AGD','Press Release - CSAMT Results from Guanaco','6397754','','','');
headlines[29] = new headline('28 February 2008','13:07','AGD','Sale of Rocklea Iron Ore Tenement','6397304','','','');
headlines[30] = new headline('27 February 2008','12:44','AGD','Annual Report to Shareholders - Page 22 updated','6397114','','','');
headlines[31] = new headline('31 January 2008','13:13','AGD','Press Release - Sale of Rocklea Iron Ore Tenement','6394228','','','');
headlines[32] = new headline('31 January 2008','12:46','AGD','Quarterly Cashflow Report','6394213','','','');
headlines[33] = new headline('31 January 2008','12:46','AGD','Quarterly Activities Report','6394211','','','');
headlines[34] = new headline('18 January 2008','15:56','AGD','Results of Meeting','6392753','','','');
headlines[35] = new headline('17 January 2008','13:31','AGD','Notice of Annual General Meeting/Proxy Form','6392636','','','');


///// Render functions /////
// (you can use your own if you like)

function viewArticle(articleID) {
	var urlStr = 'http://clients.weblink.com.au/clients/australgold/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='wlNewsTable'>");
	document.write("	<thead>");
	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 = 'AGD';
		if (h.symbol == '') continue;


		document.write("	<tr class='" + cls + "'>");
		document.write("		<td>");
		document.write('		<img src ="showcat.gif" align="bottom"  alt="Pointer">');
		document.write("		</td>");
		document.write("		<td class='title'>");
		document.write("		<a target='_blank' href='http://clients.weblink.com.au/clients/australgold/article.asp?view=" + h.id + "'>" + h.date +" - " + h.headline );
		document.write("		</td>");
		document.write("	</tr>");

	}
	document.write("	</tbody>")
	document.write("</table>")
}
