// ICSWEB Links V1.0

// Edit only the following 3 sections to change product information.
// Add new products by cutting and pasting last line in the list and incrementing the number between []


// START Products
// ***********************************************************************************




// HREF


  var href_array = new Array(6);
  href_array[0] = "http://www.asx.com.au";
  href_array[1] = "http://www.economist.com";
  href_array[2] = "http://www.asc.gov.au/asic/asic.nsf";
  href_array[3] = "http://www.fpa.asn.au/";
  href_array[4] = "http://www.moneywiseaccounting.com";
  href_array[5] = "http://www.taxinstitute.com.au/ ";
  href_array[6] = "",
  href_array[7] = "";





// PRODUCT DESCRIPTIONS
// A short description only


  var desc_array = new Array(6);
  desc_array[0] = "Stock Exchange (ASX)";
  desc_array[1] = "The Economist";
  desc_array[2] = "ASIC";
  desc_array[3] = "FPA Australia";
  desc_array[4] = "Moneywise Accounting";
  desc_array[5] = "Taxation Institute";
  desc_array[6] = "";
  desc_array[7] = "";
  desc_array[8] = "";
  desc_array[9] = "";
  desc_array[10] = "";
  desc_array[11] = "";

// PRODUCT DESCRIPTIONS
// A short description for Links Page


  var desc2_array = new Array(6);
  desc2_array[0] = "Australian Stock Exchange (ASX)";
  desc2_array[1] = "The Economist";
  desc2_array[2] = "Australian Securities and Investments Commision (ASIC)";
  desc2_array[3] = "Financial Planning Association (FPA) of Australia";
  desc2_array[4] = "Moneywise Accounting";
  desc2_array[5] = "Taxation Institute of Australia";
  desc2_array[6] = "";
  desc2_array[7] = "";
  desc2_array[8] = "";
  desc2_array[9] = "";
  desc2_array[10] = "";
  desc2_array[11] = "";





// END Products
// ***********************************************************************************






// --------------------------------------------------------------------------------------------
// !!!!!!!!!!!!!!!!    DO NOT EDIT BELOW THIS LINE !!!!!!!!!!!!!!!!!!!!!!
// ____________________________________________________________________________________________







/* **********************************************************************************************
*************************************************************************************************
											       **
Author = 		ICS Web Development - www.users.hunterlink.net.au/~ddwkl/introcom/     **
Email =	 	     	Introcom@hunterlink.net.au					       **
Created =		20-07-2001							       **
Page =		 	Links Display							       **
Last Updated =	 	01-08-2001							       **
Copyright 		ICS 2001 all rights reserved.					       **
			This script is not licenced for use on any system not authorized by    **
			Introcom Computer Services. Legal Action will be taken for any         **
			copyright infingments. This script always remains property of ICS      **
											       **
*************************************************************************************************
********************************************************************************************** */

/* NOTES:

*/



// Prints the summary List
// ****************************************************
//

function printList()
{
 // Get all the details from array's
 var temp = 7;

  for(i=0; i<temp; i++)
  {

  var href_link = href_array[i];
  var href_desc = desc_array[i];

   document.writeln("<A HREF='" + href_link + "' TARGET='_blank' CLASS='boxmenu'>" + href_desc + "</A>&nbsp&nbsp&nbsp<BR>");
}
document.writeln("<A HREF='links.html' CLASS='boxmenu'>...more links</A>&nbsp&nbsp&nbsp<BR>");

}


// Prints out the links page
// ****************************************************
//

function printFullList()
{
// Get all the details from array's


 var temp2 = 7;


document.writeln("<TABLE BORDER='0' WIDTH='365' CELLPADDING='2' CLASS='normal'>");


  for(i=0; i<temp2; i++)
  {
    var href2_link = href_array[i];
  var href2_desc = desc2_array[i];

 document.writeln("<TR BGCOLOR='#FFFFFF'><TD>");

 document.writeln(href2_desc + "<BR>");
document.writeln("<A HREF='" + href2_link + "' TARGET='_blank' CLASS='normal'>" + href2_link + "</A><BR><BR>");

document.writeln("</TD></TR>");


}
document.writeln("</TABLE>");

}

