geom/doc/salome/gui/GEOM/whdata/whftdata.js

25 lines
458 B
JavaScript
Raw Normal View History

2004-12-17 16:18:33 +05:00
// WebHelp 5.10.001
2004-06-16 21:45:26 +06:00
var gTEA = new Array();
function aTE(sTopicTitle, sTopicURL)
{
var len = gTEA.length;
gTEA[len] = new topicEntry(sTopicTitle, sTopicURL);
}
function topicEntry(sTopicTitle, sTopicURL)
{
this.sTopicTitle = sTopicTitle;
this.sTopicURL = sTopicURL;
}
function window_OnLoad()
{
if (parent && parent != this) {
if (parent.putFtsTData)
{
parent.putFtsTData(gTEA);
}
}
}
window.onload = window_OnLoad;