I know what's wrong. Don't use this:
Code:
<script language="JavaScript">
<!-- START HIDEfunction whodownloaded(attachmentid) {
window.open
("whodownloaded.php?s=$session[sessionhash]&attachmentid=" + attachmentid,
"whodownloaded", "toolbar=no,scrollbars=yes,resizable=no,width=240,height=300, top=50, left=50"); }
-->
</script>
$headnewpm
Use this:
Code:
<script language="JavaScript">
<!-- START HIDE
function whodownloaded(attachmentid) {
window.open
("whodownloaded.php?s=$session[sessionhash]&attachmentid=" + attachmentid,
"whodownloaded", "toolbar=no,scrollbars=yes,resizable=no,width=240,height=300, top=50, left=50"); }
-->
</script>
$headnewpm
See, the
function line needs to start on it's own line. I suppose I forgot a crucial line break. I'll go back and fix it.