var plaats='',straat='';

function checkpc(postcode,id) {
	postcode = postcode.replace(' ', '');
	if (postcode.length == 6) {
		postcode = postcode.toUpperCase();
		document.getElementById('postcode').value = postcode;

		var script = document.createElement('script'); 
		script.type = 'text/javascript'; 
		script.src = "http://www.postcodeboek.info/api/apipostcode.cgi?pc="+postcode+"&id="+id; 
		document.getElementsByTagName('head')[0].appendChild(script);  

	}
}


function invullen() {
	document.getElementById('straat').value = straat;
	document.getElementById('plaats').value = plaats;
}
