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(206209,'You too can be your own worst editor.');
news[1] = new newsStory(199921,'FLASH !!!  Oooo-errrr………');
news[2] = new newsStory(192194,'Amateur Photographer review of London Wide');
news[3] = new newsStory(191855,'Gene Colan has left the room.');
news[4] = new newsStory(186966,'Last Days of the Arctic');
news[5] = new newsStory(184344,'Do you suffer from Photographers RLB Syndrome?');
news[6] = new newsStory(182213,'Probably one of the best photographs I never took……………..');
news[7] = new newsStory(177686,'Photography.  Some days I just can’t be arsed.');
news[8] = new newsStory(172243,'I came, I saw, I nearly gave up.');
news[9] = new newsStory(169792,'You can lead an old dog to water……');
news[10] = new newsStory(166592,'What goes up doesn\'t always come down.');
news[11] = new newsStory(163493,'Danger Wil Robinson! Converging verticals!  Danger!.......');
news[12] = new newsStory(161229,'Hi-Ho it’s off to work(flow) we go.......');
news[13] = new newsStory(157608,'Nobody expects the Scannish Inquisition!');
news[14] = new newsStory(155525,'Blurb - OUCH!');
news[15] = new newsStory(152052,'Now you see it...........');
news[16] = new newsStory(147925,'Childs Play');
news[17] = new newsStory(145169,'Art or not Art?  That is the question. (sorry Shakespeare) ');
news[18] = new newsStory(143501,'What have Cat suits got to do with printing?');
news[19] = new newsStory(142584,'Ten things you can do with a tripod.  No 1');
news[20] = new newsStory(141674,'The EOS has landed.');
news[21] = new newsStory(138350,'“Broadsword calling Danny Boy……..come in Broadsword”');
news[22] = new newsStory(132295,'I have a cunning plan.....');
news[23] = new newsStory(130259,'Publishing a book.  How hard can it be ?');
news[24] = new newsStory(128775,'We can watch Heroes - just for one night.');
news[25] = new newsStory(127952,'Cold turkey');
news[26] = new newsStory(125994,'It\'s dead Jim......');
news[27] = new newsStory(125990,'Its February 2010 already !');
news[28] = new newsStory(99992,'I admit it - I\'m still using film.');
news[29] = new newsStory(32192,'Copyright Notice ');
news[30] = new newsStory(4427,'Gorillas- photo hints');
news[31] = new newsStory(3883,'Technical stuff (ish)');


