Index: messageforums-app/src/webapp/jsp/discussionForum/message/dfAllMessages.jsp =================================================================== --- messageforums-app/src/webapp/jsp/discussionForum/message/dfAllMessages.jsp (revision 79852) +++ messageforums-app/src/webapp/jsp/discussionForum/message/dfAllMessages.jsp (working copy) @@ -12,7 +12,8 @@ // open print preview in another browser window so can size approx what actual // print out will look like function printFriendly(url) { - window.open(url,'mywindow','width=960,height=1100'); + newwindow=window.open(url,'mywindow','width=960,height=1100,scrollbars=yes,resizable=yes'); + if (window.focus) {newwindow.focus()} } Index: messageforums-app/src/webapp/jsp/discussionForum/message/dfFlatView.jsp =================================================================== --- messageforums-app/src/webapp/jsp/discussionForum/message/dfFlatView.jsp (revision 79852) +++ messageforums-app/src/webapp/jsp/discussionForum/message/dfFlatView.jsp (working copy) @@ -12,7 +12,8 @@ // open print preview in another browser window so can size approx what actual // print out will look like function printFriendly(url) { - window.open(url,'mywindow','width=960,height=1100'); + newwindow=window.open(url,'mywindow','width=960,height=1100,scrollbars=yes,resizable=yes'); + if (window.focus) {newwindow.focus()} } Index: messageforums-app/src/webapp/jsp/discussionForum/message/dfViewThread.jsp =================================================================== --- messageforums-app/src/webapp/jsp/discussionForum/message/dfViewThread.jsp (revision 79852) +++ messageforums-app/src/webapp/jsp/discussionForum/message/dfViewThread.jsp (working copy) @@ -12,7 +12,8 @@ // open print preview in another browser window so can size approx what actual // print out will look like function printFriendly(url) { - window.open(url,'mywindow','width=960,height=1100'); + newwindow=window.open(url,'mywindow','width=960,height=1100,scrollbars=yes,resizable=yes'); + if (window.focus) {newwindow.focus()} }