Hi Kevin
I'm guessing from the info in the status bar on both screenshots that the first one relates to the Image section and the other the Discount section.
I was getting IE showing an error in the status bar (eg. Done with Errors). I have tracked it down to the Ajax coding for the interface.js file (manager\actions\includes).
The problem seemed to relate to line (which is the line before the line number stated by IE)
http_request.onreadystatechange = alertContents();
changing this line to
http_request.onreadystatechange = function() {
if (http_request.readyState == 4) {
if (http_request.status == 200 && nameval.length>0) {
ajaxrendercomponent(nameval);
} else {
alert('There was a problem with the request: ' + http_request.responseText);
}
} else {
setTimeout('alertContents()', 4);
}
}
seems to have removed the error from showing in the status bar (hopefully this will remove your debug error as well).
With this new code snippet the function alertContents() can be deleted as this has now been imbeded in the code above.
In relation to the Discount section I am working on that for the new version so I see that section is non-working at this point.
Richard