A query string parsing util. Simply add it to your page to have the query string automatically parsed. Call it using:
parseQueryString.getKeys();// Returns an array of keys from the query stringparseQueryString.contains("someKey");// Returns true/false if the key exists in the query stringparseQueryString.getValue("someValue","default Text");// Returns the value for a given key or the default text if the key doesn't existMIT Version 2 (see LICENSE.txt)