<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style>
</head>
<body class='hmmessage'>
<br>I have a proto and am trying to re-use an array in that proto<br><br><br>tbl_correct_array = new Array();<br>debug(tbl_correct_array); //shows blank<br><br>//load the array <br>for (i = 0; i < tableData[0].QUERY.length; i++){ <br>debug('new array');<br>   temp_array = tableData[0].QUERY[i].data.split(',');<br>  for (j = 0; j < temp_array.length; j++){ <br>    tbl_correct_array.push(temp_array[j]);<br>  }<br>}<br><br><br><br>Now, I go to page 1, array loads correctly.<br><br>On to page 2, array loads correctly.<br><br>back to page 1, load loop says it's happening, but the array from page 2 persists.<br><br>Ideas?<br>  <br>                                       </body>
</html>