Limit ads appearing more than three times

You could just make an easy counter – Untested though.

 <?php else : ?> 
  <?php global $wp_query; ?>
  <?php $ads = 0; ?>
  <?php if ($ads < 3 && (($wp_query->current_post + 1) % 5 == 0 )): ?>
   <div class="box">
    <adsense code>
   </div>
 <?php $ads++; ?>
 <?php endif; ?>