

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('01.12.2008','19:02','AUU','Changes in Directorship','2532193','','','');
headlines[1] = new headline('14.11.2008','9:01','AUU','Full Year Statutory Accounts','2529562','','','');
headlines[2] = new headline('07.11.2008','19:29','AUU','Director Appointment/Resignation','2528851','','','');
headlines[3] = new headline('25.09.2008','16:24','AUU','Annual Report to shareholders','2522275','','','');
headlines[4] = new headline('22.09.2008','11:28','AUU','Distribution Rate 30th September 2008','2521637','','','');
headlines[5] = new headline('22.08.2008','16:24','AUU','Preliminary Final Report','2517294','','','');
headlines[6] = new headline('19.06.2008','17:57','AUU','Dividend Details','2509609','','','');
headlines[7] = new headline('18.03.2008','13:00','AUU','Dividend Details','2498372','','','');
headlines[8] = new headline('27.02.2008','16:27','AUU','Half Year Accounts','2495145','','','');
headlines[9] = new headline('26.02.2008','11:54','AUU','Half Year Report','2494790','','','');


///// Render functions /////
// (you can use your own if you like)

function viewArticle(articleID) {
	var urlStr = 'http://clients.weblink.com.au/clients/Austcorp/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 renderHeadlinesList()
{
 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";

   if (h.symbol == '') continue;
//    document.write(" <tr class='" + cls + "'>");
    document.write(" <tr>");
    document.write("  <td>");
    document.write(h.date);
    document.write("  </td>");
//    document.write("  <td width=10>");
//    document.write("      ");
//    document.write("  </td>");
    document.write("  <td>");
    document.write("  <a target='_blank' href='http://clients.weblink.com.au/clients/Austcorp/article.asp?view=" + h.id + "'>");
    document.write('<img src ="/files/arrow-right-blue.gif" align="bottom"  alt=">"> ');
    document.write(h.headline);
    document.write("</a>");
    document.write("  </td>");
    document.write(" </tr>");
    document.write(" <tr>");
    document.write("  <td>");
    document.write("      ");
    document.write("  </td>");
    document.write("  <td>");
    document.write("");
    document.write("  </td>");
//    document.write("  <td>");
//    document.write('  <img src ="/files/arrow-right-blue.gif" align="bottom"  alt=">">');
//    document.write("  <a target='_blank' href='http://clients.weblink.com.au/clients/Austcorp/article.asp?view=" + h.id + "'>");
    document.write("  </td>");
    document.write(" </tr>");
   }
   document.write(" </tbody>")
 document.write("</table>")
}


