Ext.ns('blablar');
Ext.QuickTips.init();


function AcercaDe()
{
// VENTANA PRINCIPAL
var about_us = new Ext.Window(
{
   title : '.: blablar.com :.',
   layout : 'fit',
   width : 728,
   height : 440,
   iconCls : 'info-icon',
    //renderTo: 'hostess',
   resizable : false,
   plain : true,
   // border : true,
   draggable : false
   , modal : true
   , closeAction : 'close'
   , resizable : false
   , shadow : true
   , items : [
   {
      xtype : 'tabpanel'
      , activeTab : 0
      , defaults :
      {
         autoScroll : true, bodyStyle : 'padding:10px 10px 10px 10px'
      }
      , region : 'center'
      , deferredRender : false
//      , autoScroll : true
      , items : [
      {
         title : 'Acerca de blablar.com'
         , iconCls : 'bla-icon'
         , autoLoad :
         {
            url : 'blablar.html'
         }
         , width : 650
         , height : 460
      }
      ,
      {
         title : 'Caracter&iacute;sticas'
         , iconCls : 'status-icon'
         , autoLoad :
         {
            url : 'caracteristicas.html'
         }
         , width : 650
         , height : 460
      }
      ,
      {
         title : 'Preguntas Frecuentes'
         , iconCls : 'help-icon'
         , autoLoad :
         {
            url : 'sms-faq.html'
         }
         , width : 650
         , height : 460
      }
      ,
      {
         title : 'El Equipo'
         , iconCls : 'credit-icon'
         , autoLoad :
         {
            url : 'creditos.html'
         }
         , width : 650
         , height : 460
      }
,
      {
         title : 'Datos Demogr&aacute;ficos'
         , iconCls : 'status-icon'
         , autoLoad :
         {
            url : 'estadisticas.aspx'
         }
         , width : 650
         , height : 460
      }
      ]
   }
   ]
}
);

about_us.show();
}
