if (document.all) {
	document.all.fixed.style.position='absolute';
	if (document.body.scrollTop) {
		window.onscroll=function() {document.all.fixed.style.top=document.body.scrollTop;}
		window.onresize=function() {document.all.fixed.style.top=document.body.scrollTop;}
	} else {
		window.onscroll=function() {document.all.fixed.style.top=document.documentElement.scrollTop;}
		window.onresize=function() {document.all.fixed.style.top=document.documentElement.scrollTop;}
	}
}
