function zoomen() 
{
 var foto1;
 
 foto1 = parseInt ((5*Math.random()) + 1);  // Willekeurig getal tussen 1 en 5
 
 document.write ('<img border="0" src="startvak');
 document.write (foto1);
 document.write ('.jpg">');
 document.write ('<br><br>');

};


function zoomenloopwedstrijd() 
{
 var foto1;
 
 foto1 = parseInt ((4*Math.random()) + 1);  // Willekeurig getal tussen 1 en 4
 
 document.write ('<img border="0" src="loopwedstrijd');
 document.write (foto1);
 document.write ('.jpg">');
 document.write ('<br><br>');

};


function zoomenfietstocht() 
{
 var foto1;
 
 foto1 = parseInt ((4*Math.random()) + 1);  // Willekeurig getal tussen 1 en 4
 
 document.write ('<img border="0" src="fietstocht');
 document.write (foto1);
 document.write ('.jpg">');
 document.write ('<br><br>');

};


function zoomenmtbtocht() 
{
 var foto1;

 foto1 = parseInt ((4*Math.random()) + 1);  // Willekeurig getal tussen 1 en 4
 
 document.write ('<img border="0" src="mtbtocht');
 document.write (foto1);
 document.write ('.jpg">');
 document.write ('<br><br>');

};


function zoomenwandeltocht() 
{
 var foto1;
 
 foto1 = parseInt ((4*Math.random()) + 1);  // Willekeurig getal tussen 1 en 4
 
 document.write ('<img border="0" src="wandeltocht');
 document.write (foto1);
 document.write ('.jpg">');
 document.write ('<br><br>');

};

