/*
 +-------------------------------------------------------------------------------------+
 |                                                                                     |
 | DHTML Tabsets                                                                       |
 |                                                                                     |
 | Copyright and Legal Notices:                                                        |
 |                                                                                     |
 |   All source code, images, programs, files included in this distribution            |
 |   Copyright (c) 1996,1997,1998,1999,2000                                            |
 |                                                                                     |
 |          John C. Cokos  iWeb, Inc.                                                  |
 |          All Rights Reserved.                                                       |
 |                                                                                     |
 |                                                                                     |
 |   Web: http://www.iwebsoftware.com      Email: info@iwebsoftware.com                |
 |                                                                                     |
 +-------------------------------------------------------------------------------------+

    ** 
       Original Tabset Scripts were obtained from another source.  Cannot remember
       where I got them from.  I've manipulated the daylights out of it, to make it
       work in all browsers, and behave the way that I wanted it to.   If you are,
       or if you know the originater, please email me at the address noted above, and
       I will be happy to change the copyright notices herein to include you as
       the original source.
    **
       Traduccion: Iván Nieto Pérez
       El Código - http://www.elcodigo.net
    **    

*/


/*  
    Cambia las variables que aparecen a continuacion para adaptar el aspecto visual de las pestañas
*/


   var rows = new Array;
   var num_rows = 1;		//numero de filas
   var top = 22;		//posicion de las pestañas con respecto al borde superior
   				//OJO, si cambia, hay que cambiar tambien el atributo top de tab-body en tab.css
   var left = 0;		//posicion de las pestañas con respecto al borde izquierdo
   var width = 600;		//anchura

   var tab_off = "#EBF6FE";	//color pestaña no seleccionada
   var tab_on = "#BDDFFF";	//color pestaña seleccionada

   // ¡¡ no edites o cambies esta linea !!
   for ( var x = 1; x <= num_rows; x++ ) { rows[x] = new Array; }
 

   /*  
      Define tantas filas como quieras en el bloque a continuacion.
      Observa que cada fila debe corresponderse con una etiqueta "DIV"
      en el codigo HTML, y que esta etiqueta debe tener como identificador
      T seguido de los numeros que indican fila y columna

      Por ejemplo:  row[1][5] necesita un div con un id igual a "T15"

      Observar los ejemplos que se muestran en los comentarios:
   */


   rows[1][1] = "General";	// Requiere: <div id="T11" class="tab-body">  ... </div>
   rows[1][2] = "Caracteristicas";	// Requiere: <div id="T12" class="tab-body">  ... </div>*/
   rows[1][3] = "Otras Areas";	// Requiere: <div id="T13" class="tab-body">  ... </div>
   /*rows[1][4] = "Otras Areas";	// Requiere: <div id="T14" class="tab-body">  ... </div>*/

/*   rows[2][1] = "Paso 3";	// Requires: <div id="T21" class="tab-body">  ... </div>
   rows[2][2] = "Paso 4";	// Requires: <div id="T22" class="tab-body">  ... </div>
   rows[2][3] = "Paso 5";	// Requires: <div id="T23" class="tab-body">  ... </div>*/
