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=".\/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 = "";
	}
}

function getStraatPlaats() {
  
  var pc=document.getElementById('postcode');
  var no=document.getElementById('huisnummer');
  
  if (pc && no) {
    if (pc.value && no.value) {
      uri = './includes/getStraatPlaats.php?postcode='+pc.value+'&nummer='+no.value;
      getJavaCode( uri );
    }
  }
}