Yes, that seems to make sense with the vocabulary he used. If that's the case, phani, you can use this function I wrote to extract all the GET parameters into an associative array
Code:
function parseGetVars() {
var getVars = new Array();
var qString = top.location.search.substring(1);
var pairs = qString.split("&");
var nameVal, val;
for (var i=0; i<pairs.length; i++) {
nameVal = pairs[i].split("=");
val = (typeof nameVal[1] == 'undefined') ? '' : unescape(nameVal[1]);
getVars[unescape(nameVal[0])] = val;
}
return getVars;
}
var _GET = parseGetVars();
Of course, you can use any variable you like, I just chose
_GET because it closely mimics the PHP counterpart.