function del_item(id) {
	
	if (confirm('Are you sure you wish to delete this item?')) {
		
		window.location = '?act=cart&did=' + id;
		
	}
	
}
