IFrame background transparent in IE
Solution 1:
Add allowTransparency="true" to your iframe
<IFRAME ID="Frame1" SRC="whatever.htm" allowTransparency="true">
For whatever.htm add background:transparent
to its body
tag.
<body style="background:transparent">