14
You could do that with css
.blocktile {display: none}
And if you need to display some titles and hide others, you could go further (always with css)
In your tpl
<div id="block-<{$block.id}>">
<div class="blocktitle"><{$block.title}>div>
<{$block.content}>
div>
In style.css
#block-7777 .blocktitle, #block-45 .blocktitle, #block-32 .blocktitle {display: none;}