function deleteAppliances(item_id){
        conf = confirm("Do you really want to delete this appliance from the list?");

        if (conf){
                window.location = "?delete="+item_id;
        }
}