ok, so you build the array in, say your first page, then pass it to a session like this?:
var strArray = new Array();
session("PassingArray"

= strArray;
then in the following pages, do this:
var newArray = session("PassingArray"

;
Now a few questions:
1. Do you populate the array in the first page and pass it through just fine to the next pages?
and
2. do you do the var aryChain = Session("aryChain"

; in the function or at the top of every page?
what I'm doing is this:
function check_scaling_values(max_parm)
{
form3.scalingstring.value = scalingArr;
}
but this is after the page generation. I don't get the values of the array until after the button has been pushed. (that's the way it should be)
I pass the variable to the web page before it's set with the button. The button does the function, then passes the value in 'form3.scalingstring.value'....well it should, at least. I get an error on that line. I'm not sure what I'm doing wrong here...(-: