Read the licence, if you do not want to comply with the licence don't use these scripts.

How to use:

Download the zipfile (you did already i guess!)

Unpack the zipfile the usual way

1. Put 'nl.inc.php' in de 'lang' directory
2. Put 'nl.gif' in de 'images'-directory
3. Replace 'lang.inc.php' in the 'lang'-directory

And of course you can adapt the 'confic.inc.php' file to make Dutch the starting language. :)

------------
Other modifications:
------------

Here is the code to split the surnameblock alphabethically:

In surnames.php look for (line 47):
		echo "<a href=\"surnames.php#".$nrow["surname"]."\">".$nrow["surname"]."</a> ";

Replace that line with:

		echo "<a href=\"surnames.php#".$nrow["surname"]."\">";
		if ($startchar != $nrow["surname"]{0}) {
			$startchar = $nrow["surname"]{0};
			echo "<br>".$startchar."<br>";
		}
		echo $nrow["surname"]."</a> ";

-------------

I had several visitors that did not understand the 
meaning of "restricted". As usual too lazy to read... So i 
made a new entry restricted.php. 

The link to it is created in the lang-files (I'm sure there is 
another way, but i don't want to interfere in other files) 
like this: 
$strRestricted = "<a href=\"restricted.php\">Restricted</a>";

The page contains existing messages from the 
forbidden-page, and the my-page and even repeats part 
of the header.

The reason i did not link to the forbidden-page is that it 
is not telling why.

------------


Enjoy!

Kees Dommisse