- /* Instancio un objeto Table para el cuerpo de la pagina*/
- $tabla_cuerpo =& new HTML_Table(array( 'width'=>'220',
- 'border'=>'0',
- 'align'=>'center',
- 'cellspacing'=>'0',
- 'cellpadding'=>'0'));
-
- $IMG_NO_AUTORIZADO =& new MECON_HTML_Image('/MECON/images/general_no_autorizado.gif',
- '',array('alt'=>'No disponible'));
- $tabla_cuerpo->addRow(array($IMG_NO_AUTORIZADO),array('align'=>'center'));
- $tabla_cuerpo->addRow(array('Información no disponible'),array('class'=>'titulo_uno'));
- $m->addBodyContent('<div align=center>');
- $m->addBodyContent($tabla_cuerpo);
- $m->addBodyContent('</div>');
- $IMG_VOLVER =& new MECON_HTML_Image('/MECON/images/general_volver4.gif','',array('alt'=>'volver'));
- $link_volver =& new MECON_HTML_LINK('./','volver');
- $m->addBodyContent('<br>');
- $m->addBodyContent($IMG_VOLVER->toHtml().' '.$link_volver->toHtml());
+ $HTML_Mensaje =& new HTML_Mensaje("alerta","Información no disponible",300);
+ $m->addStyleSheet($HTML_Mensaje->getCSS());
+ $m->addBodyContent($HTML_Mensaje);