To change from the default view script (based on the action's name) and dynamically pick another view script to render you can use the following code:
$this->_helper->viewRenderer->setRender('show-image');
Now 'show-image.phtml' is rendered
Daniel Lima's trick is good too :)