function resize() {
var bodyHeight = $(this.document.body).height();
var tabMainHeight = $("#tabMain").height();
//alert(height);
//alert(QueryPanelHeight);
var QueryPanelHeight = $("#panel1").height();
var ButtonPanelHeight = $("#panel2").height();
FpSpread1.style.height = (bodyHeight - ButtonPanelHeight - QueryPanelHeight - 14) + "px";
FpSpread1.getAttribute = function (str) { return ""; }
}
Ext.onReady(function () {
FpSpread1.onCallBackStopped = function () {
resize();
};
});