function removeItem(id)
{
	if (confirm('Bu ürünü sepetten çıkarmak istiyor musunuz?'))
		window.location.href='cart.php?pid=' + id + '&act=remove';
}

