function calculate(){
var percentage = document.getElementById("percentage").value; var boolBTW = document.getElementById("boolBTW").value; var value = document.getElementById("val").value; var inc = 0 ; var excl = 0; var btwbedrag = (value/100) * percentage;
if (boolBTW == 0 ){ inc = value; var som = 100 - percentage; excl = (value/100) * som;
} else { excl = value; var som = 100 + percentage; inc = (value/100) * som; }
document.getElementById("calculationTable").innerHTML = "
Exclusief BTW: | € " + excl + " |
Inclusief BTW: | € " + inc + " |
BTW bedrag: | € " + btwbedrag + " |
";
}