function movein(which,html){
//which.style.background='midnightblue'
	if (IE4)
	{
		which.style.color = 'darkblue';
		which.style.textDecorationUnderline = true;
		beschrijving.innerHTML = html;
	}
}
function moveout(which){
//which.style.background='silver'
	if (IE4)
	{
		which.style.color = 'silver';
		which.style.textDecorationUnderline = false;
		beschrijving.innerHTML = "";
	}
}

