The Url is also in the source code (Url-encoded), i think
it's probably easier to implement decoding and parsing that, instead of
the JavaScript-Way, as you just need to download that
page, and do not need to interpret it (neither HTML nor
JavaScript). Here is my little Delphi-function:
Code:
function DecUrlEncStr(const InpStr: String): String;
var
i: Integer;
begin
SetLength(Result, Length(InpStr) div 3);
for i := (Length(InpStr) div 3) downto 1 do
Result[i] := Chr(StrToInt(LowerCase('$' + InpStr[i*3-1] + InpStr[i*3])));
end;