PortaleOrdiniGruppo/PortalStudio/spportalzoom_help.js
2025-03-24 15:28:26 +01:00

18 lines
675 B
JavaScript

if (typeof(ZtVWeb)!='undefined')
ZtVWeb.RequireLibrary("../help/portalstudio/spportalzoom_dictionary.js",true);
else
document.write("<script src='../help/portalstudio/spportalzoom_dictionary.js' type='text/javascript'></script>");
/* exported Help */
function Help(ctrlname) {
var anchor="";
if(typeof(anchorToFeature)!='undefined'){
if(typeof(ctrlname)!='undefined'){
anchor=anchorToFeature[ctrlname];
}
else if(typeof(m_cProgName)!='undefined'){
anchor=anchorToFeature[m_cProgName];
}
}
window.open('../help/portalstudio/spportalzoom_navigator.htm?'+anchor,'','toolbar=0,menubar=0,directories=0,width=800,height=600,resizable=1');
}