function FixContentSize() { $("#content").css("top", $("#header").outerHeight()); $("#content").css("bottom", $("#footer").outerHeight() - 1); // -1 because the footers bottom border goes off the page } function Initialize() { FixContentSize(); var contents = "
"; contents += "This site has been administratively disabled."; contents += "
" $("#content").html(contents); }