function refreshCart(){	document.getElementById('cart').innerHTML = '<img src="/img/cart.gif" alt="" width="50" height="40" border="0" style="vertical-align: middle;">&nbsp;&nbsp;Корзина пустa';}function addToCart(id, name){	oIframe = document.createElement('iframe');		oIframe.id = 'buffer';	oIframe.src = '/to-cart/?id=' + id;	oIframe.style.display = 'none';		document.body.appendChild(oIframe);	document.body.removeChild(oIframe);		document.getElementById('cart').innerHTML = '<a href="/shipping-cart/"><img src="/img/cart.gif" alt="" width="50" height="40" border="0" style="vertical-align: middle;"></a>&nbsp;&nbsp;<a href="/shipping-cart/">Корзина</a>';		alert(name + ' добавлен в корзину');}function itemsToDelete(num){	for (i = 1; i <= num; i++)	{		document.getElementById('removeBox' + i).checked = true;	}}
