How send a file from UNIX to Windows with FTP

Hi
I'm new working in UNIX, So, I want to know How I can send a file from UNIX to Windows server with FTP. This is my script.

ftp -i -n -v <<**

open 199.99.99.99
user user1 password1
lcd C01_07_06 /* source/
cd //199.98.98.98/group1/reports /*destination*/
put file1.sh
bye

It's not working beacuse of cd command says destination is not a directory and the directory exists, the ping to 199.98.98.98 is working.

Thanks for your answers.

Here is another way...this one is working fine since I am using it:

#! /usr/bin/ksh

HOST=ftp_server_ip
USER=your_login
PASSWD=your_password

exec 4>&1
ftp -nv >&4 2>&4 |&

print -p open $HOST
print -p user $USER $PASSWD
print -p cd /home/your_login
print -p binary
print -p put test.txt
print -p bye

wait
exit 0

Make sure you run the script where your file is or change directory first in your script.