function TechnologySetup(Title, Description, Link) {

	this.Title = Title;
	this.Description = Description;
	this.Link = Link;

}

function TechnologyInitialize() {

	TechnologyArray = new Array();

	TechnologyArray[0] = new TechnologySetup("Getting The World Online", "The United Nations has decreed that getting the rest of the world online is an urgent priority.", "WorldOnline.html");

	TechnologyArray[1] = new TechnologySetup("Apple Announces iView", "Apple Computers recently announced its newest product: the iView, a personal video viewer.", "iView.html");

	TechnologyArray[2] = new TechnologySetup("Computer Security", "New fail&ndash;safe computer security system unveiled.", "ComputerSecurity.html");

	TechnologyArray[3] = new TechnologySetup("Internet Cleanup Day", "Be prepared for the next Internet Cleanup Day.", "InternetCleanupDay.html");

}

function TechnologyWrite() {

	TechnologyInitialize();

	TechnologyText = "";

	for(i = TechnologyArray.length - 1; i >= 0; i--) {

		TechnologyText += "<p><table border=0 cellspacing=0 cellpadding=0 width=100%><tr><td width=15><p class=\'nomargin\'><img src=\'DesignImages/ArrowBullet.gif\' hspace=0 vspace=0></p></td><td><p class=\'nomargin\'><a class=link href=\'Technology/";

		TechnologyText += TechnologyArray[i].Link;

		TechnologyText += "\'>";

		TechnologyText += TechnologyArray[i].Title;

		TechnologyText += "</a></p><p>";

		TechnologyText += TechnologyArray[i].Description;

		TechnologyText += "<br></td></tr></table></p>";

	}

	document.write(TechnologyText);

}
