

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('7 December 2009','13:27','AGD','Final Directors Interest - Appendix 3Z','6473156','','','');
headlines[1] = new headline('7 December 2009','13:17','AGD','Change of Directors Interest - Appendix 3Y','6473150','','','');
headlines[2] = new headline('4 December 2009','14:06','AGD','Director Appointment/Resignation','6472956','','','');
headlines[3] = new headline('4 December 2009','13:59','AGD','Appendix 3B','6472952','','','');
headlines[4] = new headline('20 November 2009','15:09','AGD','Results of Meeting - Reduction of  Capital','6470161','','','');
headlines[5] = new headline('20 November 2009','15:07','AGD','Chairman`s Address to Shareholders Amended','6470159','','','');
headlines[6] = new headline('20 November 2009','15:07','AGD','Results of Annual General Meeting','6470160','','','');
headlines[7] = new headline('20 November 2009','10:32','AGD','Chairman`s Address to Shareholders','6470060','','','');
headlines[8] = new headline('17 November 2009','11:12','AGD','Change of Interest of Substantial Holder','6469433','','','');
headlines[9] = new headline('10 November 2009','13:38','AGD','Response to ASX Query - Change of Director`s Interest Notice','6468576','','','');
headlines[10] = new headline('30 October 2009','15:15','AGD','Change of Director`s Interest Notice - Appendix 3Y','6467201','','','');
headlines[11] = new headline('30 October 2009','15:05','AGD','Quarterly Cashflow Report','6467187','','','');
headlines[12] = new headline('30 October 2009','15:05','AGD','Quarterly Activities Report','6467188','','','');
headlines[13] = new headline('29 October 2009','10:32','AGD','AGD Announces Commencement of 2009/10 Drilling Campaign','6466565','','','');
headlines[14] = new headline('21 October 2009','10:06','AGD','Response to ASX Query re Appendix 3Y','6464863','','','');
headlines[15] = new headline('21 October 2009','9:32','AGD','AGD Announces Commencement of BFS at Guanaco','6464857','','','');
headlines[16] = new headline('20 October 2009','9:17','AGD','Notice of Annual General Meeting/Proxy Form','6464638','','','');
headlines[17] = new headline('15 October 2009','15:19','AGD','AGD announces the expiration of all remaining options','6464081','','','');
headlines[18] = new headline('15 October 2009','14:39','AGD','Change of Director`s Interest Notice - Appendix 3Y','6464073','','','');
headlines[19] = new headline('15 October 2009','14:34','AGD','Change of Director`s Interest Notice - Appendix 3Y','6464068','','','');
headlines[20] = new headline('14 October 2009','13:14','AGD','Initial Director`s Interest Notice - Appendix 3X','6463826','','','');
headlines[21] = new headline('7 October 2009','16:35','AGD','Austral Gold Announces a Director Appointment to its Board','6463085','','','');
headlines[22] = new headline('28 September 2009','17:37','AGD','Annual Report 2009 to shareholders','6461605','','','');
headlines[23] = new headline('11 September 2009','15:43','AGD','Chairmans Address to Rodman and Renshaw Annual Conference','6459897','','','');
headlines[24] = new headline('11 September 2009','15:12','AGD','Austral Gold announces Key Management Appointments','6459884','','','');
headlines[25] = new headline('9 September 2009','14:02','AGD','Appendix 3B','6459603','','','');
headlines[26] = new headline('20 August 2009','10:05','AGD','Change in substantial holding','6457145','','','');
headlines[27] = new headline('31 July 2009','10:59','AGD','Quarterly Cashflow Report','6454934','','','');
headlines[28] = new headline('31 July 2009','10:52','AGD','Quarterly Activities Report','6454930','','','');
headlines[29] = new headline('22 June 2009','13:42','AGD','Change of Interest of Substantial Holder','6450445','','','');
headlines[30] = new headline('17 June 2009','13:43','AGD','Austral Gold Investor Presentation June 2009','6450037','','','');
headlines[31] = new headline('12 June 2009','11:29','AGD','SIGNIFICANT INCREASE TO GOLD RESOURCES AT GUANACO PROJECT','6449612','','','');
headlines[32] = new headline('5 June 2009','11:08','AGD','Appendix 3B','6449012','','','');
headlines[33] = new headline('19 May 2009','16:33','AGD','Appendix 3B','6447370','','','');
headlines[34] = new headline('30 April 2009','14:33','AGD','Quarterly Activities Report','6445230','','','');
headlines[35] = new headline('30 April 2009','14:33','AGD','Quarterly Cashflow Report','6445231','','','');
headlines[36] = new headline('16 March 2009','16:39','AGD','Half Yearly Report and Accounts','6441033','','','');
headlines[37] = new headline('27 February 2009','11:25','AGD','Austral Gold announces changes to AMINSA agreement','6439310','','','');
headlines[38] = new headline('10 February 2009','18:27','AGD','Response to ASX Query - Appendix 5B','6437660','','','');
headlines[39] = new headline('28 January 2009','11:46','AGD','Quarterly Activities Report','6435866','','','');
headlines[40] = new headline('28 January 2009','11:46','AGD','Quarterly Cashflow Report','6435868','','','');


///// 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>")
}
