function confirm_delete(item,url) {
	
	if (confirm("Do you really want to delete item "+item+"?")) {
		location.href=url;
		return true;
	}
	else {
	}
}