RHEL - Shell Script not working

Hello Unix Mates

I have a problem my script is not working, can anyone tell what is rung with it?

#!/bin/sh
wget "http://download.divx.com/labs/divx611-20060201-gcc4.0.1.tar.gz"
tar zxf divx611-20060201-gcc4.0.1.tar.gz
./divx611-20060201-gcc4.0.1/install.sh

Error:

-2010-11-28 21:25:06--  http://download.divx.com/labs/divx611-20060201-gcc4.0.1.tar.gz%0D
Resolving download.divx.com... 81.167.38.41, 81.167.38.59
Connecting to download.divx.com|81.167.38.41|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
Cookie coming from download.divx.com attempted to set domain to download.divx.com
2010-11-28 21:25:07 ERROR 404: Not Found.

tar: divx611-20060201-gcc4.0.1.tar.gz\r: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
tar: Child returned status 2
tar: Exiting with failure status due to previous errors
: not found ./divx611-20060201-gcc4.0.1/install.sh

So the error message has told you what's the problem. The gz file can't be found on the http server.

2010-11-28 21:25:07 ERROR 404: Not Found.