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(162466,'<p><big>PATIENCE - ESSENTIAL FOR LANDSCAPE PHOTOGRAPHERS</big></p> ');
news[1] = new newsStory(160549,'<p><big>THE WONDER OF THE LAKE DISTRICT NATIONAL PARK</big></p>');
news[2] = new newsStory(159808,'New images from Lake District.');
news[3] = new newsStory(158737,'<p><big>AUTUMN PICTURES – CREATE, CAPTURE, OPTIMIZE</big></p> ');
news[4] = new newsStory(156029,'<p><big>OLYMPUS E-5 FUELS THE DSLR EVOLUTION</big></p>');
news[5] = new newsStory(137592,'<p><big>PARADISE FOUND !</big></p>');
news[6] = new newsStory(136978,'<p><big>YOU CANNOT ALWAYS EAT YOUR food RAW</big></p>');
news[7] = new newsStory(132014,'<p><big>IMPRESSIVE LANDSCAPE PICTURES - HOW TO MAKE IT ? </big></p> PART 5 and last : <strong><font size=\"2\" color=\"#FFD119\">Preparation</font></strong>');
news[8] = new newsStory(129311,'<p><big>IMPRESSIVE LANDSCAPE PICTURES - HOW TO MAKE IT ? </big></p> PART 4 : <strong><font size=\"2\" color=\"#FFD119\">Use Dramatic Lighting to your advantage</font></strong>');
news[9] = new newsStory(127498,'New pictures from Snowdonia trip in New Work gallery.');
news[10] = new newsStory(127264,'<p><big>IMPRESSIVE LANDSCAPE PICTURES - HOW TO MAKE IT ? </big></p> PART 3 : <font size=\"2\" color=\"#FFD119\">Look for Bold, Solid Colors</font>');
news[11] = new newsStory(124812,'<p><big>IMPRESSIVE LANDSCAPE PICTURES - HOW TO MAKE IT ? </big></p> PART 2 : <font size=\"2\" color=\"#FFD119\">Use Simple, Clear Layout</font>');
news[12] = new newsStory(123871,'<p><big>IMPRESSIVE LANDSCAPE PICTURES - HOW TO MAKE IT ? </big></p> PART 1 : <strong><font size=\"2\" color=\"#FFD119\">Include People in your frame</font></strong>');
news[13] = new newsStory(122385,'<p><big>LANDSCAPE PHOTOGRAPHY: THE RULE of THREE  P’s</big></p>');
news[14] = new newsStory(121752,'<p><big>LIMITED EDITIONS - WHY NOT ME!</big></p>');
news[15] = new newsStory(120703,'Watch my slideshow on YouTube.');
news[16] = new newsStory(120470,'Watch my slideshow on YouTube.');
news[17] = new newsStory(120127,'<p><big>HOW CAN WE INCREASE THE EXPRESSIVE QUALITIES OF A PHOTO?</big></p>');
news[18] = new newsStory(119631,'New images from Arundel.');
news[19] = new newsStory(119064,'New pictures in New Work gallery');
news[20] = new newsStory(119060,'Website update');
news[21] = new newsStory(117227,'Certificate of Authenticity');
news[22] = new newsStory(112922,'My new website is online now!');
news[23] = new newsStory(119358,'<p><big>WHY DO PEOPLE WANT TO OWN ART ?</big></p>');
news[24] = new newsStory(118806,'<p><big>WHY PEOPLE LOVE LANDSCAPE PHOTOGRAPHY?</big></p>');


