In case anyone missed it, you can emulate Request.QueryString functionality (client-side) with this object that I've created:
//only properly handles querystrings in the following format:
// http://thepage.htm?mykey1=value1&mykey2=value2
function QSHandler()
{
var i,j,tmparray,strata,prlen...