function displayadres_ja () { adres = 'ja'; setDisplay (); }
function displayadres_nee () { adres = 'nee'; setDisplay (); }

function setDisplay()
{
  var toonaflever = adres != 'nee';
  document.getElementById('afleveradresbox').style.display = toonaflever ? 'block' : 'none';
}

function toonAntwoord(whichLayer)
{
	if (document.getElementById)
		{
		var style1 = document.getElementById(whichLayer).style;
		style1.display = style1.display ? "":"none";
		}
}

