There has been a bug report regarding the course opening in a smaller popup window.
The JavaScript code used to open the popup is:
course_window=window.open(urlString,"",
"toolbar=0,directories=0,location=0,status=0,
menubar=0,fullscreen=0,scrollbars=0,resizable=1,
width=1280,height=853,left=0,top=0");
While it generally works fine, there have been instances where for certain users, the popup opens too small, almost like 3/4 of the intended size. Is it possible that this issue could be related to a known bug in Internet Explorer where popups are opened in a different size than specified in the window.open arguments?
I am aware that if a popup with the same name is already open, then a new window.open call will utilize that existing window to open the URL but disregard any new features.