// tswebnewslist.js for http://www.undp.org/tsunami/
// Revision: 3:44 PM 8 Aug 2005 by oEo

//	DO NOT modify !!!!!!!!!!!!!!!!!!!!!!!!!!


// Global variables

var thisPage = document.URL;
var theList = "";

var storyTitles = new Array();

storyTitles [0] = "New Indonesia earthquake relief effort underway, 30 March 2005";
storyTitles [1] = "Review says relief effort solid; recovery plans needed, 7 April 2005";
storyTitles [2] = "Clinton says successful tsunami reconstruction could serve as a model for future crises, 13 April 2005";
storyTitles [3] = "Rebuilding an island in the Maldives: A roof over every head in Naalaafushi, 18 April 2005";
storyTitles [4] = "Tsunami survivors work to clear coastal debris in Sri Lanka, 22 April 2005";
storyTitles [5] = "Deloitte and UNDP join forces for tsunami reconstruction, 22 April 2005";
storyTitles [6] = "Former US Presidents say $10 million in privately raised funds for tsunami reconstruction to include adopt-an-island in Maldives, 6 May 2005";
storyTitles [7] = "Tourism and culture highlighted in plans to develop post-tsunami Koh Lanta, Thailand, 13 May 2005";
storyTitles [8] = "Maldives fishermen now harvesting tsunami driftwood, 31 May 2005";
storyTitles [9] = "UNDP expands successful tsunami waste recycling project, 1 June 2005";
storyTitles [10] = "Former U.S. President Bill Clinton calls for renewed commitment to tsunami recovery effort, 8 June 2005";
storyTitles [11] = "Tsunami survivors start over: Women use UNDP <em>'Cash for Work'</em> earnings for businesses, 21 June 2005";
storyTitles [12] = "Six Months After Tsunami, UN Agencies Say Hardest Work Lies Ahead, 23 June 2005";
storyTitles [13] = "UNDP Supporting Community-based Tsunami Early-Warning System in Thailand, 29 July 2005";
storyTitles [14] = "Women from tsunami-hit districts in five countries meet to address gender concerns in reconstruction, 1 August 2005";
storyTitles [15] = "Tsunami survivors voice concerns on reconstruction as dialogue begins, 2 August 2005";
storyTitles [16] = "Tsunami damage threatens progress toward MDGs in Maldives, 17 August 2005";
storyTitles [17] = "China adopts remote tsunami-damaged islands in Maldives, 17 August 2005";
storyTitles [18] = "Job retraining key to reconstruction in Aceh, 8 September 2005";

var storyURLs = new Array();

storyURLs [0] = "http://www.un.org/apps/news/story.asp?NewsID=13805&Cr=tsunami&Cr1=";
storyURLs [1] = "http://www.undp.org/bcpr/disred/tsunami/news/april.htm#capfa2005";
storyURLs [2] = "http://www.undp.org/tsunami/features130405.htm";
storyURLs [3] = "http://www.undp.org/tsunami/features180405.htm";
storyURLs [4] = "http://www.undp.org/tsunami/features220405.htm";
storyURLs [5] = "http://www.undp.org/dpa/pressrelease/releases/2005/april/pr22apr05a.html";
storyURLs [6] = "http://www.undp.org/tsunami/features060505.htm";
storyURLs [7] = "http://www.undp.org/tsunami/features130505.htm";
storyURLs [8] = "http://www.undp.org/tsunami/features310505.htm";
storyURLs [9] = "http://www.undp.org/tsunami/features010605.htm";
storyURLs [10] = "http://www.undp.org/tsunami/features080605.htm";
storyURLs [11] = "http://www.undp.org/tsunami/features210605.htm";
storyURLs [12] = "http://www.undp.org/tsunami/features230605.htm";
storyURLs [13] = "http://www.undp.org/tsunami/features290705.htm";
storyURLs [14] = "http://www.undp.org/tsunami/features010805.htm";
storyURLs [15] = "http://www.undp.org/tsunami/features020805.htm";
storyURLs [16] = "http://www.undp.org/tsunami/features170805.htm";
storyURLs [17] = "http://www.undp.org/tsunami/features170805Ch.htm";
storyURLs [18] = "http://www.undp.org/tsunami/features080905.htm";

function newsList() {

if (thisPage == "http://www.undp.org/tsunami/features.htm")

{
	for (var i = (storyTitles.length - 2); i >= 0; i--)
	{
	theList += "• " +"<a href='" + storyURLs [i] + "'>";
	theList += storyTitles [i];
	theList += "</a><br>"; 
	}

	}
else
	{

	for (var i = (storyTitles.length - 1); i >= 0; i--)
	{
	theList += "• " +"<a href='" + storyURLs [i] + "'>";
	theList += storyTitles [i];
	theList += "</a><br>"; 
	}

}
document.write(theList);

} // function

// End of tswebnewslist.js
