:arrow: System: Windows XP, Pentium D 3,0 GHz, GeForce 7600 GS
:arrow: Compiler/IDE: Delphi 2007 for Win32
:arrow: API/Packages: Indy 10

Welcome!

I've got a problem with IdHTTP.Get method. I use this code to retrieve website's HTML code:
[pascal]
var
S: TMemoryStream;
X: String;
begin
S := TMemoryStream.Create();
X := 'http://www.wikipedia.pl';
try
IdHTTP.Get(X, S);
S.Position := 0;
Memo.Lines.LoadFromStream(S);
finally
S.Free();
end;[/pascal]

And it works perfectly for this website and a few others:
Code:
http://szukaj.torrenty.org/szukaj2.php?szukaj=crysis
http://www.animenewsnetwork.com/search?cx=016604166282602569737%3Aznd1ysjewre&cof=FORID%3A11&q=da+capo
But when I try to get the code of this one, it returns some weird ASCII characters:
[pascal]
X := 'http://anidb.net/perl-bin/animedb.pl?show=animelist&adb.search=Darker&do.sea rch=search';
[/pascal]

What am I doing wrong? :?
If you need any additional information, please let me know.

Best Regards.

EDIT
Problem solved!