<script type="text/javascript">
    $('#yes_button').click(function() {
        $('#yes_button').hide();
        $('#no_button').hide();
        $('#wait_button').show();
    });
</script>
<?php
    // @TODO Change volume and tv brand
    if ($this->artistType == 'film_collection') {
        if ($this->userObj->isWorkstationExperienceFilm()) {
            $name = $this->translate->_("collection");
        } else {
            $name = $this->translate->_("volume");
        }
    } elseif ($this->artistType == 'tv_artist') {
        $name = $this->translate->_("tv brand");
    } else {
        $name = "'" . $this->artistName . "'";
    }
?>
<center><p class="textBold">Do you really want to delete <?php echo $name?>?</p></center>
