WordPress Related Plugin – only show when related content

I don’t know for sure if this would work but this is where I’d start:

<?php $related_content = $related->show(get_the_ID()); ?>
<?php if($related_content): ?>
    <div class="related"><strong>Related products</strong><br />
        <?php echo $related_content; ?>
    </div>
<?php endif; ?>