/* Write the shortcut string into the document. */
document.write(sHhSc);
return;
}
/* relatedControl FUNCTION *********************************************
version 0.5 - April 15, 1999
by Peter Costantini */
/* Construct control object for HTML Help Related Tools ALinks. Instanciation of control objects is in separate script, controls.js, for modularity. */
function relatedObject(sRelId,sRelItem2)
{
this.relid = sRelId;
this.relitem2 = sRelItem2;
}
function relatedControl(relobj) {
var oRelObject = relobj;
var sRelId = oRelObject.relid;
var sRelItem2 = oRelObject.relitem2;
var sActiveX1 = " TYPE='application/x-oleobject' CLASSID='clsid:1e2a7bd0-dab9-11d0-b93a-00c04fc99f9e' ";
var sActiveX2 = " TYPE='application/x-oleobject' CLASSID='clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11' ";
/* Write the shortcut string into the document. */
document.write(sHhRel);
return;
}
/* browseSequence FUNCTION *********************************************
version 0.5 - November 5, 1998
by Peter Costantini */
/*
Pass browseSequence the name of the current topic. Main browse sequence is in a separate file, browse-main.js. Function finds previous and next topics and writes them into a string which is a line of HTML. This string is returned by the function and written into the document.
*/
function browseSequence(topic)
{
var i;
var sPreviousNext;
var sPrevFile;
var sPrevFull;
var sNextFile;
var sNextFull;
var sHref = "<P CLASS='browse'><A HREF='"
var sTitle = "' TITLE='"
var sNext = "'>Next</A></P>"
var sPrevious = "'>Previous</A></P>"
var sPreviousHref = "'>Previous</A> | <A HREF='"
var sCurrentTopic = topic;
var iBrowseLength = oBrowseArray.length;
var bTopicFound = false;
/* Find current topic. */
for(i = 0; i < iBrowseLength; i++)
{
if (oBrowseArray[i].topicid == sCurrentTopic)
{
bTopicFound = true;
/* If first topic, write only link to next topic. */