You need to have cookies enabled for that and also it returns a 302(temporarily moved) which means it is not handling the redirects(not exactly redirects but kinda) properly.
I don't how far i can help you out but i can suggest these:
1.Get live http headers extension for Firefox.:
http://livehttpheaders.mozdev.org/
2.Check out the way things work in the background: Here is my output:
Code:
http://reg.imageshack.us/setlogin.ph...051795891XXXXX
GET /setlogin.php?login=eef5cc5e36b051795891XXXXX HTTP/1.1
Host: reg.imageshack.us
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1) Gecko/20061010 Firefox/2.0
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
HTTP/1.x 302 Found
Connection: close
X-Powered-By: PHP/5.1.2
Location: http://dev.imageshack.us/setlogin.ph...xxxxxxxxx&xml=
Content-Type: text/html
Content-Length: 0
Date: Tue, 19 Dec 2006 07:13:18 GMT
Server: lighttpd/1.4.8
----------------------------------------------------------
http://dev.imageshack.us/setlogin.ph...xxxxxxxxx&xml=
GET /setlogin.php?login=eef5cc5e36b051795891xxxxxxxxx&xml= HTTP/1.1
Host: dev.imageshack.us
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1) Gecko/20061010 Firefox/2.0
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
HTTP/1.x 302 Found
Date: Tue, 19 Dec 2006 07:09:08 GMT
Server: Apache/2.0.52 (CentOS)
X-Powered-By: PHP/4.3.9
Set-Cookie: myid=3733953; expires=Fri, 14-Dec-2007 07:09:08 GMT; path=/; domain=.imageshack.us
Set-Cookie: myimages=eef5cc5e36b051795891xxxxxxf3; expires=Fri, 14-Dec-2007 07:09:08 GMT; path=/; domain=.imageshack.us
Location: http://reg.imageshack.us/v_images.php
Content-Length: 0
Connection: close
Content-Type: text/html; charset=UTF-8
----------------------------------------------------------
http://reg.imageshack.us/v_images.php
GET /v_images.php HTTP/1.1
Host: reg.imageshack.us
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1) Gecko/20061010 Firefox/2.0
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Cookie: myid=3733953; myimages=eef5cc5e36b051795891xxxxx90f3
HTTP/1.x 200 OK
Connection: close
X-Powered-By: PHP/5.1.2
Set-Cookie: myimages=eef5cc5e36b051795891xxxxxxxx; expires=Fri, 14-Dec-2007 07:13:21 GMT; domain=.imageshack.us
Content-Type: text/html
Date: Tue, 19 Dec 2006 07:13:21 GMT
Server: lighttpd/1.4.8
Transfer-Encoding: chunked
----------------------------------------------------------
3.Then use these api functions to set and get cookies accordingly.
http://support.microsoft.com/kb/q196062/
I suggest you use inet control for this or the class module from vbip.com .
If needed try the user agent extension and modify headers extension to play around with headers.