function afbeelding(afb) {
	var e = getE("afbeelding");
	if (e) {
		if (afb != "") {
			e.src = afb;
		}
		else {
			e.src = "afbeeldingen/gebouw-mmg.jpg";
		}
	}
}

function getE(id) {
	if (document.getElementById) {
		return document.getElementById(id);
	}
	else {
		return null;
	}
}
function viewhide(id) {
	var e = getE(id);
	if (e) {
		if (e.style.display == "none") {
			e.style.display = "block";
		}
		else {
			e.style.display = "none";
		}
		return true;
	}
	return false;
}

idto = -1;
function hide_to(id, ms) {
	idto = setTimeout("hide('" + id + "')", ms);
}
function view_to(id) {
	clearTimeout(idto);
	view(id);
}

function hide(id) {
	var e = getE(id);
	if (e) {
		e.style.display = "none";
		return true;
	}
	return false;
}
function view(id) {
	var e = getE(id);
	if (e) {
		e.style.display = "block";
		return true;
	}
	return false;
}
