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(71246,'The T S Eliot series');
news[1] = new newsStory(71243,'Focus in Landscape');
news[2] = new newsStory(71242,'Dream Landscape');
news[3] = new newsStory(71470,'Bench');
news[4] = new newsStory(71467,'A Real World');
news[5] = new newsStory(71609,'Brighton Polytechnic');
news[6] = new newsStory(69562,'Another sample news story');
news[7] = new newsStory(69561,'An example news story');
news[8] = new newsStory(71561,'Quotes');
news[9] = new newsStory(71385,'The New Belfast');
news[10] = new newsStory(72841,'Lines written after the death of my father');
news[11] = new newsStory(76355,'Resonance and concept');
news[12] = new newsStory(76354,'The Fallen Figure');
news[13] = new newsStory(97321,'Petite Mort');


