/**/
function QSObject(querystring){
//Create regular expression object to retrieve the qs part
var qsReg = new RegExp("[?][^#]*","i");
hRef = unescape(querystring);
var qsMatch = hRef.match(qsReg);
//removes the question mark from the url
qsMatch = new String(qsMatch);
qsMatch = qsMatch.substr(1, qsMatch.length -1);
//split it up
var rootArr = qsMatch.split("&");
for(i=0;i