/*
* Javascript by Libertes (www.libertes.nl)
*/
function sendForm(iProductid,$iHoeveelheid) {
    $('bestel'+iProductid).request({
        parameters: { id:iProductid, hoeveelheid:$iHoeveelheid },
        
        onComplete: function(t) {
            $('content_cart').update(t.responseText);
            
				document.location='index.php?p=cart';
			
        },
        onFailure: function() { alert('Technische fout bij verzending'); }
    });
}
function getHoeveelheid(iId) {
	if(document.getElementById('hoeveelheid_'+iId+'_2')) {
		if(document.getElementById('hoeveelheid_'+iId+'_2').checked) return 2;
	}
	if (document.getElementById('hoeveelheid_'+iId+'_3')) {
		if (document.getElementById('hoeveelheid_'+iId+'_3').checked) return 3;
	}
	return 1;

}
