function TogglePlaats(state) {
	document.getElementById ("plaats_info_ingeklapt").style.display = state ? "none" : "block";
	document.getElementById ("plaats_info_uitgeklapt").style.display = state ? "block" : "none";
	return false;
}

function TogglePartij(state) {
	document.getElementById ("partij_info_ingeklapt").style.display = state ? "none" : "block";
	document.getElementById ("partij_info_uitgeklapt").style.display = state ? "block" : "none";
	return false;
}

function TogglePersoon(state) {
	document.getElementById ("persoon_info_ingeklapt").style.display = state ? "none" : "block";
	document.getElementById ("persoon_info_uitgeklapt").style.display = state ? "block" : "none";
	return false;
}

function openPopup (url, name, w, h, resizable) {
	var resizable = resizable || 0;
	var opt = "toolbar=0,location=0,scrollbars="+resizable+",directories=0,status=0,menubar=0,resizable="+resizable+","
				+"width="+w+",height="+h+",left="+parseInt((screen.width-w)/2)+",top="+parseInt((screen.height-h)/3);
	window.open(url, name, opt);
}

function sp (id) {
	document.getElementById('p'+id).click();
}

function swap(target,img){
	if(document.images[target]){
		document.images[target].src=img;
	}
}
