var website = 'http://www.autobedrijf-geerts.nl/';

function fotopop(foto, alttekst, breed, hoog) {
  venster=window.open
  ('','','width='+breed+',height='+hoog+',left=10,top=10,screenY=10,screenX=10');
    with(venster.document) {
	  open();
	  write('<head><title>'+alttekst+'</title></head>\n');
	  write('<body marginwidth=0 marginheight=0 style="margin:0;" onblur="window.close()" onclick="window.close()">\n');
	  write('<a href="#" style="cursor:hand;"><img src="'+website+'abc/data/'+foto+'" width='+breed+' height='+hoog+' border="0" /></a>\n');
	  write('</body></html>');
	  close();
  }
}

function clearIt( box ) {
  if(box.value==box.defaultValue) {
	  box.value = "";
	}
}