I am using window.open to open a popup window like so:
<a href="http://path/to/url" onclick="window.open(this.href, 'sharegplus', 'height=485,width=700'); return false;" target="_blank">
I want this to be centered in the screen, but without having to use <script> inline code </script>
and merely enter whatever I need within onclick=""
. Can this be done?