function recruit(url_r,t) {
var readPanel1 = new Ext.Panel({
id:'PanelRead1',
name: 'PanelRead1',
xtype: 'panel',
autoLoad: {url: url_r,scripts:true},
layout:'fit',
defaults: {width: 806, height: 539}
});

var win1 = new Ext.Window({
layout      : 'fit',
title : t,
width       : 824, //+18
height      : 561, //+22
closeAction : 'hide',
plain       : true,
items : [readPanel1]
});
win1.show();
}