function calcProductPrice(id, count)
{
	ajaxCall('/shop/ajax-price/'+id+'.html?quantity='+count+'&target=calcprice_out_' + id);
	/*
	var price = 0;
	var _count = parseInt(count);

	if (vpe > 0 && (_count % vpe) > 0)
	{
		_count = _count + (vpe - (_count % vpe));
	}
	for (pricecount in prices)
	{
		var _pricecount = parseInt(pricecount);

		if (price == 0)
		{
			price = prices[pricecount];
		}
		if (_count >= _pricecount)
		{
			price = prices[pricecount];
		}
	}
	if (units > 0)
	{
		price = price / units;
	}
	$('calcprice_out_' + id).innerHTML = money_render(price * _count) + ' €';*/
}
