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

