cudreg-saml2/Troubleshooting/OnlineHelp.js
2025-06-08 16:22:20 +07:00

8 lines
333 B
JavaScript

function ShowHelp(section) {
version = "9.2.0"
url = "http://www.ironspeed.com/Designer/" + version + "/WebHelp/" + section
newwindow = window.open(url,'name','left=100,top=100,scrollbars=yes,resizable=yes,menubar=yes,location=yes,status=yes,titlebar=yes,toolbar=yes');
if (window.focus) {newwindow.focus()}
return false;
}