To fix the resizing problem change this:
Code:
onclick='window.open("private.php?do=showpm&pmid=$newpm[pmid]", "pmbox", "menubar=yes,scrollbars=yes,toolbar=yes,location=yes,directories=yes,resizable=ye s,top=50,left=50");expandit("pm_popup");window.focus("pmbox");'
to
Code:
onclick='window.open("private.php?do=showpm&pmid=$newpm[pmid]", "pmbox", "menubar=yes,scrollbars=yes,toolbar=yes,location=yes,directories=yes,resizable=yes,top=50,left=50");expandit("pm_popup");window.focus("pmbox");'
and this:
Code:
onclick='window.open("private.php", "pmbox", "menubar=yes,scrollbars=yes,toolbar=yes,location=yes,directories=yes,resizable=ye s,top=50,left=50");expandit("pm_popup");window.focus("pmbox");'
to
Code:
onclick='window.open("private.php", "pmbox", "menubar=yes,scrollbars=yes,toolbar=yes,location=yes,directories=yes,resizable=ye s,top=50,left=50");expandit("pm_popup");window.focus("pmbox");'
I'm also going to update the first post to reflect those changes