window.open('path/to/php?point=' + point + '&name=' + name); // etc for all other vars
make sure the values of your variables are urlsafe, i'd urlencode them with:
encodeURIComponent(variable);
Edit re your comment
<a href="#" onclick="make(vars, go, here); return false;">Click me!</a>
but if thats all you want, you might as well just have the link open in a blank window:
<a href="path/to/php?point=foo&etc=bar" target="_blank">Click me!</a>
It depends if make()
is doing something else other than opening a window, i suspect so?