Hallo Ralf.
Ich kann hier nur Vermutungen anstellen.
Mal abgesehen davon, daß deine DTD strict sich mit Iframes nicht verträgt, hast du deinem Iframe das Attribut scrolling="no" zugeordnet.
Experimentiere mal mit "auto" oder "yes" herum und kuck mal was dann passiert.
Eventuell brauchst du für den 6er ein "Conditional Comment".
Ich hab bei mir z.B. sowas eingebaut:
<!--[if lte IE 6]>
<script type="text/javascript">
if (top != self) {
document.write ('<style type="text/css">html {overflow-x:hidden;}body {margin-right:18px;}</style>')
}
</script>
<![endif]-->
Dies macht allerdings nur Sinn bei scrolling="auto".
Gruß wonderbra