function fon_evaluate_shop_products()
{
	var sum = 0, col, row;
	var node_list = document.getElementsByTagName('H2');
	var cart = document.createElement('TABLE');
	cart.id = 'place_cart_here';
	cart = cart.appendChild(document.createElement('TBODY'));
	for (var idx in node_list) if (!isNaN(idx))
	{
		row = document.createElement('TR');
		col = document.createElement('TD');
		col.appendChild(document.createTextNode(node_list[idx].firstChild.nodeValue));
		row.appendChild(col);
		col = document.createElement('TD');
		col.appendChild(document.createTextNode(node_list[idx].parentNode.parentNode.getElementsByTagName('SELECT')[0].value));
		row.appendChild(col);
		col = document.createElement('TD');
		col.appendChild(document.createTextNode(" x "));
		row.appendChild(col);
		col = document.createElement('TD');
		col.appendChild(document.createTextNode(parseFloat(node_list[idx].parentNode.parentNode.getElementsByTagName('P')[node_list[idx].parentNode.parentNode.getElementsByTagName('P').length-1].firstChild.nodeValue.replace(',','.')).toString().replace('.',',') + ' €'));
		row.appendChild(col);
		col = document.createElement('TD');
		col.appendChild(document.createTextNode(" = "));
		row.appendChild(col);
		col = document.createElement('TD');
		var res = parseFloat(node_list[idx].parentNode.parentNode.getElementsByTagName('P')[node_list[idx].parentNode.parentNode.getElementsByTagName('P').length-1].firstChild.nodeValue.replace(',','.')) * node_list[idx].parentNode.parentNode.getElementsByTagName('SELECT')[0].value;
		col.appendChild(document.createTextNode(res.toFixed(2).replace('.',',') + ' €'));
		if (!isNaN(res))
			sum += res;
		row.appendChild(col);
		cart.appendChild(row);
	}
	row = document.createElement('TR');
	col = document.createElement('TD');
	col.appendChild(document.createTextNode(""));
	row.appendChild(col);
	col = document.createElement('TD');
	col.appendChild(document.createTextNode(""));
	row.appendChild(col);
	col = document.createElement('TD');
	col.appendChild(document.createTextNode(""));
	row.appendChild(col);
	col = document.createElement('TD');
	col.appendChild(document.createTextNode(""));
	row.appendChild(col);
	col = document.createElement('TD');
	col.appendChild(document.createTextNode(""));
	row.appendChild(col);
	col = document.createElement('TD');
	col.appendChild(document.createTextNode(sum.toFixed(2).replace('.',',') + ' €'));
	row.appendChild(col);
	cart.appendChild(row);
	document.getElementById('place_cart_here').parentNode.replaceChild(cart.parentNode,document.getElementById('place_cart_here'));
}
