I believe that you need one more file a .js file named jscript_positionedPopup.js with this as the contents
Place the file in your templates jscript folderCode:<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>
includes/templates/dream9shp/jscript/
and adjust your "onclick" code
Code:onclick="positionedPopup...


Reply With Quote
