+ $image = new MECON_HTML_Image(
+ $this->_directorio.'/copete',
+ 'Intranet - Ministerio de EconomÃa - ' . $this->_sistema,
+ array(
+ 'width' => 760,
+ 'height' => 42,
+ 'border' => 0,
+ )
+ );
+ if (@$this->_ayuda) {
+ $image->updateAttributes(array('usemap' => '#Map_copete'));
+ $image->setSrc($image->getSrc() . '_ayuda');
+ return $image->toHtml() . '<map name="Map_copete"><area shape="circle" coords="748,30,7" href="'
+ . $this->_ayuda . '"></map>';
+ }
+ else {
+ return $image->toHtml();
+ }