Here's your code revised to use alternate syntax for control structures, convenient for using within templates:
<?php $cont_disp = ($cont_disp); ?>
<?php if ($cont_disp[0] == ""): ?>
<!-- show nothing -->
<?php else: ?>
<div id="car-Description" class="box-round">
<div id="title-text-center">
<h3>Vechicle Description</h3>
</div>
<?php $cont_disp = the_content(); ?>
</div><!--End car-Description-->
<?php endif; ?>