(function (){
   var location_query_string = location.href.split("?");
   if (location_query_string.length == 2){
      var arguments = location_query_string[1].split("&");
      var i, argument_value;
      for(i=0; i<arguments.length; i++){
         argument_value = arguments[i].split("=");
         if (argument_value[0]!='')
         eval(argument_value[0] + " = \"" + unescape(argument_value[1]).replace(/\"/g, '\\"') + "\";");
      }
   }
})();
