function fitSiteBottom() {    
 if (navigator.appName.indexOf("Microsoft")!=-1) {
  winH = document.body.offsetHeight;
 }
 else winH = window.innerHeight;
 if (document.getElementById("masterContentBase").offsetHeight < winH)
 {
     document.getElementById('siteBottom').style.height = "15px";
 }
}

