

function recursosTuristicos() {
var panel = new Ext.Panel({
html:'Recursos Turísticos Medina del Campo',
autoScroll:true
				
				});
				
var win = new Ext.Window({
               title:'Recursos Turísticos Medina del Campo',
                layout:'fit',
				y:50,
				
                width:750,
                height:500,
				autoScroll:true,
                //closeAction:'hide',
                plain: true,

                items: [panel]
				,
				 buttons: [{
                    text: 'Cerrar',
                    handler: function(){
                        win.hide();
                    }
                }]
				
            });

        win.show();


panel.load({
    url: 'recursosturisticos.php',
 
    callback: function () {
		
	},
 
    text: 'Cargando Recursos Turísticos ...'
});

}

function centenario() {
var panel = new Ext.Panel({
html:'IV Centenario',
autoScroll:true
				
				});
				
var win = new Ext.Window({
               title:'VI Centenario de la institución de las Procesiones de Disciplina',
                layout:'fit',
				y:50,
				
                width:750,
                height:500,
				autoScroll:true,
                //closeAction:'hide',
                plain: true,

                items: [panel]
				,
				 buttons: [{
                    text: 'Cerrar',
                    handler: function(){
                        win.hide();
                    }
                }]
				
            });

        win.show();


panel.load({
    url: 'centenario.php',
 
    callback: function () {
		
	},
 
    text: 'Cargando IV Centenario ...'
});

}


function mundoCofrade()
{

var panel = new Ext.Panel({
				autoScroll:true,
				html:'Mundo Cofrade'
				});

var win = new Ext.Window({
               title:'Mundo Cofrade',
                layout:'fit',
				y:50,
				//modal:true,
				autoScroll:true,
                width:750,
                height:500,
                //closeAction:'hide',
                plain: true,

                items: [panel]
				,
				 buttons: [{
                    text: 'Cerrar',
                    handler: function(){
                        win.hide();
                    }
                }]
				
            });

        win.show();
				
panel.load({
    url: 'mundocofrade.php',
 
    callback: function () {
		
	},
 
    text: 'Cargando Mundo Cofrade ...'
});



}

function mujeresMundoCofrade() {

var panel = new Ext.Panel({
autoScroll:true,
				region:'center',
				html:'Mujeres Mundo Cofrade'
				});
				
var win = new Ext.Window({
               title:'Mujeres Mundo Cofrade',
                layout:'fit',
				y:50,
				
                width:750,
                height:500,
                //closeAction:'hide',
                plain: true,

                items: [panel]
				,
				 buttons: [{
                    text: 'Cerrar',
                    handler: function(){
                        win.hide();
                    }
                }]
				
            });

        win.show();
		
		panel.load({
    url: 'mujeresmundocofrade.php',
 
    callback: function () {
		
	},
 
    text: 'Cargando Mujeres Mundo Cofrade ...'
});
}

function noticia(){
var panel = new Ext.Panel({
autoScroll:true,
				region:'center',
				html:'Fiesta de Interés Turístico Internacional'
				});
				
var win = new Ext.Window({
               title:'Fiesta de Interés Turístico Internacional',
                layout:'fit',
				y:50,
				
                width:465,
                height:600,
                //closeAction:'hide',
                plain: true,

                items: [panel]
				,
				 buttons: [{
                    text: 'Cerrar',
                    handler: function(){
                        win.hide();
                    }
                }]
				
            });

        win.show();
		
		panel.load({
    url: 'noticiainteres.php',
    callback: function () {
	},
    text: 'Cargando noticia ...'
});


					 
}

Ext.onReady(function(){





});
