AnToxa, от "наездов" футера на контент можно "защититься" например так
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
* {
margin: 0;
padding: 0;
}
html,
body {
width: 100%;
height: 100%;
}
#container {
position: relative;
width: 90%;
min-height: 100%;
margin-left: auto;
margin-right: auto;
background-color: silver;
}
#footer,
#footer_tab {
height: 100px;
}
#footer_tab {
clear: both;
}
#footer {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
background-color: orange;
}
</style>
<script type="text/javascript">
</script>
</head>
<body>
<div id='container'>
<div id='content'>content</div>
<div id='footer_tab'></div>
<div id='footer'>footer</div>
</div>
</body>
</html>
И не нужно никакое вычисление высоты контента скриптом...