smesh/doc/salome/gui/SMESH/whdata/whftdata.js
2004-06-18 08:55:35 +00:00

24 lines
437 B
JavaScript
Executable File

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;