// URL argument script (C)2001-2002 Null Interactive.
// Free use of this script is allowed as long as
// this message remains intact.
//            http://www.nullinteractive.com/

var queryArgs = new Array();

queryArgs.Load = function(){
    var q = self.location.search;
    if(q == "") return;
    q = q.substring(1,q.length);
    var a = q.split("&");
    var v = /^([A-Za-z_]\w*)=(.*)$/;
    var i;
    for(i=0; i < a.length; i++) {
        if(v.test(a[i])){
        	queryArgs[(RegExp.$1)] = unescape(RegExp.$2);
        }
    }
}
queryArgs.Load();