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=7124785734656"; 
		document.getElementsByTagName('head')[0].appendChild(script);  
	}
}

function invullen()
{
	document.getElementById('straat').value = straat;
	document.getElementById('plaats').value = plaats;
}