function scriptload_otherhtml()
{
	var scriptPathAll = '../../all/scripts/';
	var scriptPathLang = '../scripts/';

	scriptArray = new Array
	(
		scriptPathAll + 'vars.js',
		scriptPathAll + 'lib.js',
		scriptPathAll + 'report.js',
		scriptPathLang + 'texts.js',
		scriptPathAll + 'props_vers.js',
		scriptPathAll + 'props.js',
		scriptPathLang + 'props.js'
	)

	var htmlOut = '';

	var scriptDeclText = '<script type="text/javascript" src="SCRIPTTARGET"></script>';
	var scriptRegEx = /SCRIPTTARGET/;

	for (var i in scriptArray)
	{
		htmlOut += scriptDeclText.replace(scriptRegEx, scriptArray[i]);
	}
	document.write(htmlOut);

	// hide body so we can replace tokens with flicker (must be written before page is loaded and not in function)
	document.write('<style>body { display: none }</style>');
}

function otherhtml_pageload()
{
	replaceTokensInHTML();
	var pageAnalytics_timeout = setTimeout (pageAnalytics, 250);
}

function results_pageload()
{
	replaceTokensInHTML();
}

function bns_pageload()
{
	replaceTokensInHTML();
}

scriptload_otherhtml();