function updateWinkelmand(prodid, item, maat){
	var aantal = item.value;	
	
	new Ajax.Updater('winkelmand', '/ajax/updateWinkel.php', { method: 'post', parameters: 'id=' + prodid + '&aantal='+aantal+'&maat='+maat+'' });
 
}

function setMessage(prodid,maxaantal){
	var aantal = document.getElementById('aantal'+prodid).value;
	new Ajax.Updater('message', '/ajax/setMessage.php', { method: 'post', parameters: 'aantal='+aantal+'&maxaantal='+maxaantal+'' });
}

function submitform()
{
  document.productform.submit();
}

function updateAantal(item, prodid){
	var selIndex = item.selectedIndex;
	var maat = item.options[selIndex].value;
	new Ajax.Updater('aantalDivH', '/ajax/updateAantal.php', { method: 'post', parameters: 'id=' + prodid + '&maat='+maat+'' });
 
}

