$(function () {
  $('.startbody a[href][title]').qtip({
    content: {
      text: false
    },
    position: {
      corner: {
        tooltip: 'topMiddle',
        target: 'topMiddle'
      }
    },
    style: {
      tip: true
    },
    hide: {
      fixed: true
    }
  });
});

function checkvoorwaarden () {
  if (!document.checkoutform.voorwaarden.checked) {
    alert("Om te kunnen bestellen, dient u akkoord te gaan met de voorwaarden.");
  }
  return document.checkoutform.voorwaarden.checked;
}