+<?php
+// vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
+// +--------------------------------------------------------------------+
+// | Ministerio de Economía |
+// | Intranet |
+// +--------------------------------------------------------------------+
+// | This file is part of Intranet. |
+// | |
+// | Intranet is free software; you can redistribute it and/or modify |
+// | it under the terms of the GNU General Public License as published |
+// | by the Free Software Foundation; either version 2 of the License, |
+// | or (at your option) any later version. |
+// | |
+// | Intranet is distributed in the hope that it will be useful, but |
+// | WITHOUT ANY WARRANTY; without even the implied warranty of |
+// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
+// | General Public License for more details. |
+// | |
+// | You should have received a copy of the GNU General Public License |
+// | along with Hooks; if not, write to the Free Software Foundation, |
+// | Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
+// +--------------------------------------------------------------------+
+// | Creado: Thu Jul 10 15:14:06 2003 |
+// | Autor: Gonzalo Merayo <gmeray@mecon.gov.ar> |
+// +--------------------------------------------------------------------+
+//
+// $Id: xmi2code.tpl.php 1 2003-06-23 18:29:20Z gmeray $
+//
+
+
+
+// +X2C includes
+require_once 'HTML/Table.php';
+// ~X2C
+
+// +X2C Class 162 :HTML_Copete
+/**
+ * @access public
+ */
+class HTML_Copete extends HTML_Table {
+ // ~X2C
+
+ // +X2C Operation 163
+ /**
+ * @param int $seccion
+ *
+ * @return void
+ * @access public
+ */
+ function HTML_Copete($seccion) // ~X2C
+ {
+ echo '<link rel="stylesheet" href="css/copete.css">';
+ echo '<map name="intranet">
+ <area shape="rect" coords="14,0,209,54" href="#" alt="Intranet" title="Intranet" >
+ <area shape="rect" coords="605,17,629,41" href="#" alt="Mapa de Intranet" title="Mapa de Intranet" >
+ <area shape="rect" coords="645,17,669,41" href="#" alt="Cambio de Clave" title="Cambio de Clave" >
+ <area shape="rect" coords="685,17,709,41" href="#" alt="Ayuda" title="Ayuda" >
+ <area shape="rect" coords="726,17,750,41" href="#" alt="E-mail" title="E-mail" >
+ <area shape="poly" coords="473,19,473,43,475,45,561,45,563,43,563,19,561,17,475,17,473,19,473,19" href="sistemas.php" alt="Sistemas" title="Sistemas" >
+ <area shape="poly" coords="366,19,366,43,368,45,454,45,456,43,456,19,454,17,368,17,366,19,366,19" href="servicios.php" alt="Servicios" title="Servicios" >
+ <area shape="poly" coords="258,20,258,44,260,46,346,46,348,44,348,20,346,18,260,18,258,20,258,20" href="noticias.php" alt="Noticias" title="Noticias" >
+ </map>';
+
+
+parent::HTML_Table(array('width' => '760',
+ 'border' => '0',
+ 'cellspacing' => '0',
+ 'cellpadding' => '0'));
+ $anchos = array('12', '25', '712', '11');
+ $fila = array();
+ foreach($anchos as $a)
+ $fila[] = '<img src="images/blanco.gif" width="'.$a.'" height="1">';
+ $this->addRow($fila);
+ $seccion = 'images/copete_'.$s.'.jpg';
+ $this->addRow(array('<img src="'.$seccion.'" width="760" height="66" border="0" usemap="#intranet">'), array('colspan' => '4'));
+ $fila = array();
+ $fila[] = '<img src="images/copete_inicio.gif" height="30" border="0">';
+ $fila[] = '<img src="images/copete_flecha_azul.gif" height="30" border="0">';
+ switch($s)
+ {
+ case 'noticias': $fila[] = 'Enlaces útiles: <a href="http://www.mecon.gov.ar/" target="_blank"><span class="TextBlue">Ministerio
+ de Economía y Producción</span></a><span class="TextBlue"> - <a href="http://boletinoficial.mecon.ar/" target="_blank">Boletín
+ Oficial</a> - <a href="http://infoleg.mecon.gov.ar/" target="_blank">INFOLEG</a>
+ - <a href="http://cdi.mecon.gov.ar/" target="_blank">CDI</a></span>';
+ break;
+ case 'servicios': $fila[] = '<span class="titulo_uno">Servicios</span>';
+ break;
+ case 'sistemas': $fila[] = '<span class="titulo_uno">Sistemas</span>';
+ break;
+ }
+ $fila[] = '<img src="images/copete_fin.gif" height="30" border="0">';
+ $this->addRow($fila, array('class' => 'titulo_vinculos'));
+ }
+ // -X2C
+
+} // -X2C Class :HTML_Copete
+?>
\ No newline at end of file