function ToonFoto(naam) {
	mywin = window.open('', 'nieuwvenster', 'width=800,height=600,status=no,toolbar=no,menubar=no');
	mywin.document.open();
	mywin.document.write('<html><head><title>Pottenbakkerij Geert Theunissen');
	mywin.document.write('</title></head><body bgcolor="darkred" fgcolor="white">');
	mywin.document.write('<div align=center><fonst size=+3>');
	mywin.document.write('<p><img src="');
	mywin.document.write(naam);
	mywin.document.write('" height="500"></p>');
	mywin.document.write('<form><input type="button" value="Sluit venster" OnClick="self.close()"></form>');
	mywin.document.write('</font></div>');
	mywin.document.write('</body></html>');
	mywin.document.close();
}
