
function movein(which,html){
//which.style.background='midnightblue'
	if (IE4 || NS6)
	{
		which.style.textDecorationUnderline = true;
		if(movein.arguments.length > 1) 
			toolTip(html);
		
		//beschrijving.innerHTML = html;
	}
}
function moveout(which){
//which.style.background='silver'
	if (IE4 || NS6)
	{
		which.style.textDecorationUnderline = false;
		toolTip();
		//beschrijving.innerHTML = "";
	}
}

function moveinNormal(which,html){
	if (IE4 || NS6)
	{
		which.style.textDecorationUnderline = true;
		toolTip(html);
		//beschrijving.innerHTML = html;
	}
}

function moveoutNormal(which){
	if (IE4 || NS6)
	{
		which.style.textDecorationUnderline = false;
		toolTip();
		//beschrijving.innerHTML = "";
	}
}
