//Set the global variables needed for Pane Help here.

var L_H_APP, H_URL_BASE, H_CONFIG
var bSearch, bScreen
var agent_isMac, agent_isNS, agent_IsIE, agent_isAOL, agent_Major

/*****HIP.net customization*****************************************/
bScreen = false; //set to false so that main window will not resize
/*****HIP.net customization*****************************************/

agent_isNS = (navigator.appName == "Netscape");
agent_isIE = (navigator.userAgent.indexOf("MSIE") != -1);
agent_isMac =(navigator.userAgent.indexOf("Mac") != -1);
agent_isAOL= (navigator.userAgent.indexOf("AOL") != -1);
agent_Major = parseInt(navigator.appVersion); //browser version number

//script to open single topic
var sHtopic

function doPiHelpTopic(sHtopic)
{
	H_TOPIC = sHtopic;
	bSearch = false;
	H_CONFIG = vH_CONFIG;
	DoHelp();
}

function DoHelpWrapper()
{
	H_TOPIC = vH_TOPIC;
	L_H_TEXT = vL_H_TEXT;
	H_KEY = vH_KEY;
	bSearch = vbSearch;
	H_CONFIG = vH_CONFIG;
	DoHelp();
}
function ShowPictureMeterHelp(intIndex)
{
	var strBaseURL = "NET_PROCResRatingMeter_intl.htm&v4=";
	H_TOPIC = strBaseURL + intIndex;
	bSearch = false; //true = display mini-TOC; false = display single topic
	H_CONFIG = vH_CONFIG;
	DoHelp();
}

