function call_item_add(item_code) {
	var r = $.get("/cartitems/cart.php", {action: 'add', item_code: item_code},
	 	function(text, status) {
			focus();
	 	}
	);
}

function item_del(item_code) {
 	 $.get("/cartitems/cart.php", {action: 'remove', item_code: item_code},
		function(text, status) {
			document.open();
			document.write(text);
			// $(document).html(text);
		}
	);
 	// $(document).load("/cartitems/cart.php", {action: 'remove', item_code: item_code});
}

