function cartAdd(id,amount,productName,price,page){
	if(!amount)			amount=1;
	if(!productName)	productName='Produkt ' + id;
	if(!price)			price=0;
	if(!page)			page="";
	
	$.post("/internet/shop/cartAdd.php", 
			{ id: id, amount: amount, productName : productName, price : price, page : page },
			function(response){
				location.href=location.href;
			}
		);	
}


function cartDelete(id){
	$.post("/internet/shop/cartDelete.php", 
			{ id: id},
			function(response){
				location.reload();
			}
		);	
}


function cartEdit(editArray){
	$.post("/internet/shop/cartEdit.php", 
			editArray,
			function(response){
				location.href=location.href;
			}
		);	
}