var vensternaam;
vensternaam = null;
function nieuwvenster(maand,jaar) {
vensternaam = window.open("wandpermaand.php?maand="+maand+"&amp;jaar="+jaar+","info","width=200,height=300");
}

var google_api_key = 'ABQIAAAAsPBTf77Pjpo0ZxjjKUVWJRSfCrZPhxsld3uOCz5mdeg-Lv93vhREc513CbYEbLFQBEFRi5vsLzIVzQ';
// zoeken
function zoekPostcode() {
	var zoekpc = document.getElementById('invoer').value;
	if (zoekpc.length >= 2) {
  document.getElementById("resultaat").style.border="1px solid #A5ACB2";
	//alert('ok, here we go! :)');
	ajax_post('test_search.php?zoek=' + escape(zoekpc),'toonResultaat(ajax.responseText)');
	}
	else {
	toonResultaat('');
	//alert('voer een postcode in');
  document.getElementById("resultaat").innerHTML="";
  document.getElementById("resultaat").style.border="0px";
  return;
	}
}
function toonResultaat(txt) {
	document.getElementById('resultaat').innerHTML = txt;
}

