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(56725,'Poems');
news[1] = new newsStory(109968,'Readings/Gigs/Workshops');
news[2] = new newsStory(108807,'World Peace Day Concert');
news[3] = new newsStory(101946,'two new gigs');
news[4] = new newsStory(94809,'Poetry Reading in Wrexham');
news[5] = new newsStory(93209,'Patrick and Nicky\'s mother writes book');
news[6] = new newsStory(93205,'CD Launch At Chapter Arts Centre');
news[7] = new newsStory(80048,'GAZA EMERGENCY APPEAL CONCERT');
news[8] = new newsStory(68751,'new book \"darkness is where the stars are\" info');
news[9] = new newsStory(64086,'links to  press about revelation');
news[10] = new newsStory(56728,'New dates for Revelation at Chapter Arts Centre');
news[11] = new newsStory(61967,'new tracks from james bradfield');
news[12] = new newsStory(58720,'Support Babi Badalov');
news[13] = new newsStory(56727,'Other');


