function convert(kleur)
{
	var asds = HexToR('#ffffff');
}

function HexToR(h) { return parseInt((cutHex(h)).substring(0,2),16) }
function HexToG(h) { return parseInt((cutHex(h)).substring(2,4),16) }
function HexToB(h) { return parseInt((cutHex(h)).substring(4,6),16) }
function cutHex(h) { return (h.charAt(0)=="#") ? h.substring(1,7) : h}

function menugroep (id)
{
	if (document.getElementById(id).style.display == 'none') document.getElementById(id).style.display = 'block';
	else document.getElementById(id).style.display = 'none';
}

function menugroep_aan (id)
{
	document.getElementById(id).style.display = 'block';
}