I tried this and it works for me. Don't know if it will effect anything else at this point though. Any input is welcome.
Commented out lines 1830 and 1831.
In Catalog > Editors > Htmlarea.Js
// FIXME!!! this should return false for IE < 5.5
HTMLArea.checkSupportedBrowser = function() {
if (HTMLArea.is_gecko) {
if (navigator.productSub < 20021201) {
alert("You need at least Mozilla-1.3 Alpha.\n" +
"Sorry, your Gecko is not supported.");
return false;
}
if (navigator.productSub < 20030210) {
Line 1830- //alert("Mozilla < 1.3 Beta is not supported!\n" +
Line 1831- // "I'll try, though, but it might not work.");
}
}
return HTMLArea.is_gecko || HTMLArea.is_ie;
};
Hope this helps, again, any inputs are welcome.