I am pretty new to JavaScript as well... but maybe you could try using parameters to your page?
You can use this code to access the parameters of a page in javascript:
Code:
var query = window.location.search.substring(1);
var parms = query.split('&');
for (var i=0; i<parms.length; i++) {
var pos = parms[i].indexOf('=');
if (pos > 0) {
var key = parms[i].substring(0,pos);
var val = parms[i].substring(pos+1);
if(key == "something you wanted to carry to the next page") {
var IneedThis = val;
}
.......
And then when you call your page in PHP figure out how to send the parameters that you need?
Good luck
Bookmarks