function remove(id) {
	
	if (confirm('Are you sure you wish to delete this item?')) {
		
		window.location = '/basket/?rid=' + id;
		
	}
	
}