<?php
/*
$this->block_code2call, static block code name - the one added under CMS > Static Blocks
*/
$_block = Mage::getModel('cms/block')
->setStoreId(Mage::app()->getStore()->getId())
->load($this->getLayout()->createBlock('cms/block')->setBlockId($this->block_code2call)->getBlockId());
?>
<div class="box base-mini">
<div class="head">
<h4 class="title"><?php echo $this->__($_block->getTitle()) ?></h4>
</div>
<div class="content">
<?php echo $this->getLayout()->createBlock('cms/block')->setBlockId($this->block_code2call)->toHtml() ?>
</div>
</div>