Hi John,
I found the problem and solution. To fix it immediately, edit the file /Controls/ImageCropper.ascx
look for this:
<div class="settingrow" ">
<asp:Image ID="imgToCrop" runat="server" />
notice it has an extra quotation on the div after the class name, remove it so it looks like this:
<div class="settingrow">
<asp:Image ID="imgToCrop" runat="server" />
I have made the same change in my copy to fix it for the coming release.
Thanks again,
Joe