My jscript opens web pages in a default web browser - in my case it is Firefox. So you can replace this line:
oShell.ShellExecute("https://stooq.com/q/n/?s=" + Name, "", "");
with this one, if you want to open a web page in Firefox:
oShell.ShellExecute("firefox.exe", "https://stooq.com/q/n/?s=" + Name, "");
or this one, if you want to use Chrome:
oShell.ShellExecute("chrome.exe", "https://stooq.com/q/n/?s=" + Name, "");
And remember, that these are only a few examples working for me ( Statica plugin + Polish web pages) showing how it can be done. You need to modify and customize them to be able to open specific web pages in your configuration. You use a different AB data base and probably would like to open other web pages...