function delete_item(url) {
	if (confirm('Are you sure you want to delete this?')) {
		window.status = '';
		window.location.href = url;
	}
}