<!--
function newz(smer){

	novinka = new Array();
	novinka[1] = "3.5.2001 - Official DeathBringer pages were started. German version will follow.";
	novinka[2] = "11.5.2001 - Four articles about DeathBringer game were added. <br> You can find them in section Wrote about us.";
        novinka[3] = "26.5.2001 - Find the answer on one of the game riddles and win original package of DeathBringer game in section Visitor's voice.";
        novinka[4] = "8.6.2001 - The English version of web pages were started. German version will follow soon.";	
        novinka[5] = "10.6.2001 - New screenshot from Black Mirror mansion was added into the section Preview.";
        novinka[6] = "15.6.2001 - Winner of first round of our contest is already known. In case you also want to win our game, please join us in the second round right at section Visitor's voice.";
        novinka[7] = "21.6.2001 - We added new piece of music from our game soundtrack, you can download it from section Preview.";
        novinka[8] = "28.6.2001 - Second round of our contest is done. But donīt worry, there is another oportunity how to win - join us for the third round in section Visitor's Voice.";
        novinka[9] = "4.7.2001 - At the section Preview you can see the new screenshot of night time graveyard, and three new artworks of main game character, Samuel Gordon.";
        novinka[10] = "17.7.2001 - The German version of our web page started. You can now select your language at the welcome page.";
        novinka[11] = "19.8.2001 - The third round of our contest is still running, so you can join us. You can find the competitive question in section Visitor's Voice.";
        novinka[12] = "24.8.2001 - The third round is over and we know the names of the third round winners now. For those who want to win our game in advance, there will be another contest round starting soon.";
        novinka[13] = "3.9.2001 - The fourth round started ! You may again fight for your own original package of our game. But, remeber - only the fastest answers can win.";
        novinka[14] = "6.9.2001 - We added new screenshot into section Preview. On this one particulary, you can see rain we create for the second chapter.";
        novinka[15] = "16.9.2001 - Fourth round has ended, correct answer and names of the winners are shown in section Visitor's Voice, as usualy.";
        novinka[16] = "17.9.2001 - New interesting article with some new info on the game added to the section Wrote about us.";
        novinka[17] = "14.6.2002<br> - Five new screenshots added from playble demo we released. Playable demo will be available soon.";
        novinka[18] = "31.8.2002<br> - Two new artworks of Victorie and Frederick added to the Preview section.";
        novinka[19] = "8.11.2002<br> - New graphics and shots from game movies added to the Preview section.";
        novinka[20] = "3.12.2002<br> - Playable demoversion of our game is now available in the Preview section. 30MB to download.";
        novinka[21] = "8.1.2003<br> - New music Vzpominka.mp3 (Remembrance) from game soundtrack added to the Preview section.";
        novinka[22] = "15.3.2003<br> Two new wallpapers added to the Preview section. <br><br> Check first rewievs points TBM obtained in Wrote about us section.";
 	if (smer==null){
	ukazatel.stav = novinka.length;
	document.all.novinky.innerHTML = novinka [ukazatel.stav-1];

	}
	
	if (smer == "dalsi") 
	{
		++ukazatel.stav;
		
		if (ukazatel.stav <= (novinka.length-1))
			document.all.novinky.innerHTML = novinka[ukazatel.stav];	
			else {
			ukazatel.stav = (novinka.length-1);
			document.all.novinky.innerHTML = novinka[ukazatel.stav];
			}
	}
	
	
	if (smer == "zpet") 
	{
		--ukazatel.stav;
		if (ukazatel.stav >= 1)
			document.all.novinky.innerHTML = novinka[ukazatel.stav];
		else {
			ukazatel.stav = 1;
			document.all.novinky.innerHTML = novinka[ukazatel.stav];
			}
	}
}
//-->