// JavaScript Document

function vervang(id,bron){
	if(document.getElementById){
		beeld=document.getElementById(id);
		beeld.setAttribute("src",bron);
	}
}
function terug(id,bron){
	if(document.getElementById){
		beeld=document.getElementById(id);
		beeld.setAttribute("src",bron);
	}
}