function WorldSetup(Title, Description, Link) {

	this.Title = Title;
	this.Description = Description;
	this.Link = Link;

}

function WorldInitialize() {

	WorldArray = new Array();

	WorldArray[0] = new WorldSetup("Saddam Hussein Joins Mormons", "Former Iraqi president Saddam Hussein announces he has converted to the Church of Jesus Christ of the Latter Day Saints.", "HusseinMormon.html");

	WorldArray[1] = new WorldSetup("It&rsquo;s Howdy Doody Time", "Howdy Doody&rsquo;s heartbreaking addiction to cocaine.", "HowdyDoody.html");

	WorldArray[2] = new WorldSetup("Disney Comes To Baghdad", "The US government announces a plan to build a Disneyland in Iraq.", "DisneyBaghdad.html");

	WorldArray[3] = new WorldSetup("Oprah And Martha To Rebuild New Orleans", "Oprah Winfrey and Martha Stewart have declared that they are joining forces to rebuild New Orleans.", "OprahMartha.html");

	WorldArray[4] = new WorldSetup("Catholic Synod Reviews Communion", "A synod of Catholic bishops will discuss forbidding Communion to Catholic politicians who vote against church doctrine.", "CatholicCommunion.html");

	WorldArray[5] = new WorldSetup("European Union To Fight Bird Flu", "The European Union recently announced its commitment to prevent deadly bird flu from spreading inside its borders.", "Euronet.html");

	WorldArray[6] = new WorldSetup("Taliban Barbie", "Barbie has been revamped to reflect Islamic sensibilities.", "Barbie.html");

	WorldArray[7] = new WorldSetup("George Bush Presidential Library Unveiled", "The George Bush Presidential Library has been officially unveiled in Crawford, Texas.", "BushLibrary.html");

}

function WorldWrite() {

	WorldInitialize();

	WorldText = "";

	for(i = WorldArray.length - 1; i >= 0; i--) {

		WorldText += "<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=\'World/";

		WorldText += WorldArray[i].Link;

		WorldText += "\'>";

		WorldText += WorldArray[i].Title;

		WorldText += "</a></p><p>";

		WorldText += WorldArray[i].Description;

		WorldText += "<br></td></tr></table></p>";

	}

	document.write(WorldText);

}
