function Berichten(iStart,iDuur,iPauze,iHerhaal) {

var aRegels = [];
aRegels[0] = 'See the <font color="red">NEWS</font> page.';
aRegels[1] = '<font color="red">NEW</font>: The FRED GAISBERG DIARIES - <font color="red">Part 1: USA & Europe (1898-1902)</font> !';
aRegels[2] = 'The FRED GAISBERG DIARIES - <font color="red">Part 2: Going East (1902-1903)</font> !';
aRegels[3] = 'The new <font color="red">SEARCH</font> function: a dream come true ! Check it out !';
iLaatsteT = 0;
for (h=0; h<iHerhaal; h++) {
for (i in aRegels) {
T=iLaatsteT+iStart+i*(iPauze+iDuur);
t1=setTimeout("document.getElementById('berveld').style.visibility='visible'",T);
t1=setTimeout("document.getElementById('berveld').innerHTML='"+aRegels[i]+"'",T+5);
t1=setTimeout("document.getElementById('berveld').innerHTML=''",T+iDuur+5);}
t1=setTimeout("document.getElementById('berveld').style.visibility='hidden'",T+iDuur);
iLaatsteT = T+iDuur+iPauze;
}}


