// JavaScript Document
  {
  fotonr=1;
  aantal_fotos=20;
  }
  
  function loaded()
  {
  document.loading.style.visibility='hidden';
  }
  
  function opstart()
  {
  document.form_omschr.foto_omschr.value="Berghoeve 261";
  }

  function fotoimpressie(PrevNext,GotoFoto)
  {
  if(PrevNext!=0)
  {
  fotonr=fotonr+PrevNext;
  if(fotonr==0)
  {fotonr=aantal_fotos}

  if(fotonr>aantal_fotos)
  {fotonr=1}
  }

  if(GotoFoto!=0)
  {
  fotonr=GotoFoto;
  }
  
  switch (fotonr)
  {
  case 1:
  case 2:
  case 3:
  document.form_omschr.foto_omschr.value="Berghoeve 261";
  break;
  case 4:
  case 5:
  document.form_omschr.foto_omschr.value="Terras achter";
  break; 
  case 6:
  document.form_omschr.foto_omschr.value="Woonkamer";
  break;
  case 7:
  document.form_omschr.foto_omschr.value="Eettafel in de keuken";
  break;
  case 8:
  document.form_omschr.foto_omschr.value="De keuken";
  break;
  case 9:
  document.form_omschr.foto_omschr.value="Slaapkamer";
  break;
  case 10:
  document.form_omschr.foto_omschr.value="Overloop";
  break; 
  case 11:
  document.form_omschr.foto_omschr.value="Bedstee";
  break;
  case 12:
  document.form_omschr.foto_omschr.value="Centrumgebouw";
  break; 
  case 13:
  document.form_omschr.foto_omschr.value="Ingang centrumgebouw";
  break;   
  case 14:
  document.form_omschr.foto_omschr.value="Zwembad";
  break;  
  case 15:
  document.form_omschr.foto_omschr.value="Impressie van het park";
  break;  
  case 16:
  document.form_omschr.foto_omschr.value="Speelweide";
  break;      
  case 17:
  document.form_omschr.foto_omschr.value="Toegang tot het grote zand";
  break;
  case 18:
  case 19:
  case 20:
  document.form_omschr.foto_omschr.value="Het grote zand";
  break;
  default:
  }
  
  document.loading.style.visibility='visible';
  document.foto.src='images/foto/foto'+fotonr+'.jpg';
  }

