var totaal;
 
function optellen(){
	totaal = 32.50;
 
	var velden = document.getElementsByTagName('input');
	for(var i = 0; i < velden.length; i++){
		if(velden[i].checked){
			if(velden[i].value != "on"){
				totaal += parseFloat(velden[i].value);
			}
		}
	}
	voor = Math.floor(totaal,0);
	na = Math.round((totaal - voor)*100);
	if (na<10) {
	na = '0'+na;
	}
	totaal = voor+','+na;
	document.getElementById('totaal').innerHTML = "&euro;&nbsp;" + totaal;
}

