codice:
<!--[if IE]>
<script type="text/javascript">
var fromTop=100;
window.onload=function(){
document.getElementById('fixed').style.position='absolute';
window.onresize=window.onscroll=function(){
document.getElementById('fixed').style.top=document.documentElement.scrollTop+fromTop+'px';
}
}
</script>
<![endif]-->
il livello da mantenere fisso ha id="fixed" e si trova a top:100px;
via css lo setti a position:fixed; per tutti gli altri browser
il commento condizionale interessa solo IE
(nota che se il documento non ha doctype .documentElement diventa .body)
ciao