function hide (attribuut)
{

document.getElementById(attribuut).style.display = "none";
	
}

function show (attribuut)
{

document.getElementById(attribuut).style.display = "inline";
	
}