// JavaScript Document

	function openafbeelding(url){
		w = 800;
		h = 533;
		l = (screen.width - w) / 2;
		t = (screen.height - h) / 2;
		
		window.open("/afb.php?i="+url, 'id', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width='+w+',height='+h+',left='+l+',top='+t);
		
	}
	
	function openKaart(){
		w = 800;
		h = 500;
		l = (screen.width - w) / 2;
		t = (screen.height - h) / 2;
		
		window.open("/kaart.php", 'kaart', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width='+w+',height='+h+',left='+l+',top='+t);
	}
