fixit = function(){
var pagePaneWidth = $('maintopcontainer').getStyle('width');
var pagePanePic = $('maintopcontainer').getStyle('height');
$('astropane').setStyle('width', pagePaneWidth);
//******
var pagePaneText = $('astropane').getStyle('height');
pagePaneText = pagePaneText.replace(/px/ig,"");
pagePanePic = pagePanePic.replace(/px/ig,"");
newPagePaneHeight = (Number(pagePaneText) + Number(pagePanePic) - 18) ;
newFooterTop = newPagePaneHeight + 210;
newAdSpaceTop = newFooterTop + 380;
newPagePaneHeight = Math.round(newPagePaneHeight) + 'px';
newFooterTop = Math.round(newFooterTop) + 'px';
newAdSpaceTop = Math.round(newAdSpaceTop) + 'px';
$('contentpane').setStyle('height',newPagePaneHeight);
$('bottomcontainer').setStyle('top', newFooterTop);
if ($('ad1')!=null)
    $('ad1').setStyle('top', newAdSpaceTop);
}
//*******************
window.onresize = fixit;