/*
 * Ext JS Library 2.2
 * Copyright(c) 2006-2008, Ext JS, LLC.
 * licensing@extjs.com
 * 
 * http://extjs.com/license
 */

Ext.onReady(function(){

    var tabs = new Ext.TabPanel({
        renderTo:'tabs',
        resizeTabs:false, // turn on tab resizing
        minTabWidth: 115,
        tabWidth:135,
        activeTab:0,
        margins:'0 0 0 0',
        enableTabScroll:true,
        width:810,
        height:671,
        border: false,
        deferredRender:false,
        defaults: {autoScroll:true},
        plugins: new Ext.ux.TabCloseMenu()
    });

//http://firma.providencia.cl/Transparencia/cgi/Portal.exe/LoadPageTree
//http://firma.providencia.cl/Transparencia/TreeFast/TreeFast.html
    tabs.add({
    	      id:'1',
    	      border: false,
            title: 'Bienvenido al Portal',
            cls: 'padding:0px;margin:0px;',
            style: 'background-color:aqua;',
            iconCls: 'tabs',
            html: '<iframe src="http://firma.providencia.cl/Transparencia/TreeFast/TreeFast.html" width="100%" height="100%" frameborder="0"/>',
            //html: '<iframe src="http://firma.providencia.cl/Transparencia/cgi/Portal.exe/LoadPageTree" width="100%" height="100%" frameborder="0"/>',
            closable:false
        }).show();
        
        
        tabs.add({
            title: '¿Qué es Transparencia?',
            iconCls: 'tabs',
            html: '<iframe src="http://firma.providencia.cl/Transparencia/Que_es_Transparencia.htm" width="100%" height="100%" frameborder="0"/> ',
            closable:false
        }).show();
        
        tabs.add({
            title: 'Indice',
            iconCls: 'tabs',
            html: '<iframe src="http://firma.providencia.cl/Transparencia/AllTree.html" width="100%" height="100%" frameborder="0"/> ',
            closable:false
        }).show();
        
        tabs.add({
            title: 'Ayuda del Sitio',
            iconCls: 'tabs',
            html: '<iframe src="http://firma.providencia.cl/Transparencia/Ayuda/Ayuda.htm" width="100%" height="100%" frameborder="0" /> ',
            closable:false
        }).show();
        
        tabs.add({
            title: 'Reglamento',
            iconCls: 'tabs',
            html: '<iframe src="http://firma.providencia.cl/Transparencia/pdf/EX646-2010.pdf" width="100%" height="100%" frameborder="0"/>',
            closable:false
        }).show();

        tabs.add({
            title: 'Consulta Ciudadana',
            iconCls: 'tabs',
            html: '<iframe src="http://firma.providencia.cl/Transparencia/Ingresos/frmIngreso.html" width="100%" height="100%" frameborder="0" /> ',
            closable:false
        }).show();
        
    		tabs.add({
    	      id:'x',
    	      border: false,
            title: 'Estadísticas',
            cls: 'padding:0px;margin:0px;',
            style: 'background-color:aqua;',
            iconCls: 'tabs',
            //html: '<iframe src="http://firma.providencia.cl/Transparencia/TreeFast/TreeFast.html" width="100%" height="100%" frameborder="0"/>',
            //html: '<iframe src="http://firma.providencia.cl/Transparencia/cgi/Portal.exe/LoadPageTree" width="100%" height="100%" frameborder="0"/>',
            html: '<iframe src="http://firma.providencia.cl/Transparencia/Estadistica/frmEstadistica.html" width="100%" height="100%" frameborder="0"/>',
            closable:false
        }).show();

        
     var tab = tabs.getItem('1');   
     tabs.setActiveTab(tab);
  
   
});