If you want to display a block in your template:
$block = block_load(<code>$module, $delta</code>); print render(_block_get_renderable_array( _block_render_blocks( array($block) )));
where:
$module Name of the module that implements the block to load.
$delta Unique ID of the block within the context of $module. Pass NULL to return an empty block object for $module.
Reference links:
