Great! Then lets do this:
Code:
<script>
var qString = top.location.search;
qString = unescape(qString.substring(1));
var getVars = qString.split(/[\&]/);
var pageVars = new Array();
for (var j in getVars)
{
var temp = getVars[j].split(/[=]/);
pageVars[j] = temp[1];
}
</script>
Now you have an array,
pageVars that holds the value of each of the get variables (in sequence of appearance). Do you think this will work for you?