function newsStory(id,headline) {
	this.id = id;
	this.headline = headline;
}

function nextNews(newsID) {

	for (j = 0; j < news.length; j++) {
		if (news[j].id == newsID) {
			break;
		}
	}
	if (j + 1 < news.length ) {
		window.location = 'news_' + news[j + 1].id + '.html';
	}
	else {
		alert('No more stories');
	}
}

function ShowNewsLinks(newsID) {
		
	
	if (!basic) {
		for (j = 0; j < news.length; j++) {  
			if (news[j].id == newsID) {  
				break;
			}
		}
		if (j == (news.length -1)) {   
			document.all.nextlink.style.visibility = 'hidden';
		}
		
	}
}


var news = new Array();
news[0] = new newsStory(123664,'Kader in \"New Africa Analysis\" journal');
news[1] = new newsStory(84799,'Donations');
news[2] = new newsStory(84658,'Current Needs');
news[3] = new newsStory(84649,'Kader Keita');
news[4] = new newsStory(84616,'The Work of Mali Association of Culture and Hope');
news[5] = new newsStory(83763,'Festival run by a team from Angers, France');
news[6] = new newsStory(84804,'Donation Form');
news[7] = new newsStory(84660,'Plans for the Future');
news[8] = new newsStory(84654,'A family vocation');
news[9] = new newsStory(84617,'Bogolan Art');
news[10] = new newsStory(83764,'Breaking News ..........');
news[11] = new newsStory(84644,'Missing children');
news[12] = new newsStory(84645,'Sale of the \"Bogolan Art\"');
news[13] = new newsStory(84620,'Children who have completed the course');
news[14] = new newsStory(84621,'Transition period');
news[15] = new newsStory(89190,'Personal Accounts');
news[16] = new newsStory(84643,'Other disadvantaged people');


