function volgendefoto(x){
photX=photX+x;
if(photX>=photS.length) photX=photS.length-1;
if(photX<0) photX=0;
document.images.afbeelding.src=photS[photX];
document.formT.areaT.value=photT[photX];
if(photX==0)
{document.form1.button1.value=' ';document.form1.button2.value='>';}
else
if(photX == photS.length-1)
{document.form1.button1.value='<';document.form1.button2.value=' ';}
else
{document.form1.button1.value='<';document.form1.button2.value='>';}
}

