function adjustFooter(){

var height = 0;
var top = 0;

if( typeof( window.offsetHeight ) == 'number') {
    //Non-IE
    height = window.offsetHeight ;
	
	top = height - 99;
  } else if( document.documentElement && document.documentElement.scrollHeight) {
    //IE 6+ in 'standards compliant mode'
    height = document.documentElement.scrollHeight ;
	top = height - 99;
  } else if( document.body && document.body.offsetHeight ) {
    //IE 4 compatible
    height = document.body.offsetHeight ;
	top = height - 50;
  }

$("#columnset10").css("position", "absolute");

$("#columnset10").css("top", top + "px");
}