I believe that you need one more file a .js file named jscript_positionedPopup.js with this as the contents
Code:
<script language="javascript">
var popupWindow = null;
function positionedPopup(url,winName,w,h,t,l,scroll){
settings =
'height='+h+',width='+w+',top='+t+',left='+l+',scrollbars='+scroll+',resizable'
popupWindow = window.open(url,winName,settings)
}
</script>
Place the file in your templates jscript folder
includes/templates/dream9shp/jscript/
and adjust your "onclick" code
Code:
onclick="positionedPopup...
Bookmarks