function addToShoppingCart(id){
	location.href= ROOT + "winkelwagen/toevoegen/" + id;
}

function removeFromShoppingCart(id){
	location.href=ROOT + "winkelwagen/verwijderen/" + id;
}

function changeDeliveryMethod(){
	document.shoppingCart.action=ROOT + 'winkelwagen/updateVerzendmethode';
	document.shoppingCart.submit();
}

function updateShoppingCart(productId){
	document.shoppingCart.action=ROOT + 'winkelwagen/update/' + productId;
	document.shoppingCart.submit();
}

function emptyShoppingCart(){
	if(confirm("Weet u zeker dat u de winkelwagen wilt leegmaken?")){
		location.href=ROOT + "winkelwagen/leeg";
	}
}

function search(query){
	if(query!=""){
		location=ROOT + 'onderdelen/zoeken/' + query;
	}
}

function startOrder(){
	if(confirm('U heeft gekozen voor de verzend- en betaalmethode:\n\n' + document.getElementById('deliveryMethod').options[document.getElementById('deliveryMethod').selectedIndex].text + '\n\nIs dit correct?')){
		location.href= ROOT + 'bestellen/stap2.html';
	}
}