function checkForInt(evt) {
var charCode = ( evt.which ) ? evt.which : event.keyCode;
return (( charCode >= 48 && charCode <= 57 ) || (charCode <= 8));
}

function itemplus(txtaantal)
{
  var aantal = document.getElementById(txtaantal).value;
  aantal ++;
  document.getElementById(txtaantal).value = aantal;
  document.getElementById(txtaantal).onkeyup();
}
function itemmin(txtaantal)
{
  var aantal = document.getElementById(txtaantal).value;
  aantal --;
  if (aantal > 0) {
    document.getElementById(txtaantal).value = aantal;
  } else {
    document.getElementById(txtaantal).value = "1";
  }
  document.getElementById(txtaantal).onkeyup()
}
