function FillArray(ThisValue)
{
	if (ThisValue != '')
		window.open(ThisValue,'wn');
}

var numText = 5;

var textURL = new Array(numText);
var textName = new Array(numText);
var textString = new Array(numText);
var textIcon = new Array(numText);

textURL[0] = './html/pca.htm';
textName[0] = 'Currency Converter';
textString[0] = 'Whatever';
textIcon[0] = 'null.gif';

textURL[1] = './html/calc.html';
textName[1] = 'Loan Calculator';
textString[1] = 'Whatever';
textIcon[1] = 'null.gif';

textURL[2] = 'http://';
textName[2] = 'Whatever';
textString[2] = 'Whatever';
textIcon[2] = 'null.gif';

textURL[3] = 'http://';
textName[3] = 'Whatever';
textString[3] = 'Whatever';
textIcon[3] = 'null.gif';

textURL[4] = 'http://';
textName[4] = 'Whatever';
textString[4] = 'Whatever';
textIcon[4] = 'null.gif';

