window.onload=function() {
  var olddiv=document.getElementById('leftcolumncontent');
  var newdiv=document.getElementById('leftcolumn');


  content=olddiv.innerHTML;
  olddiv.innerHTML="";
  olddiv.style.display="none";
  newdiv.innerHTML=content;


  var footerdiv=document.getElementById('footer');
  footerdiv.style.position="relative";
  footerdiv.style.bottom="0px";
  footerdiv.style.top="0px";
  footerdiv.style.marginTop="10px";
  footerdiv.style.marginBottom="0px";
}