Problem with gnome-terminal

Hello everyone. This is my first post.:o

Using Ubuntu 8.04 and bash 3.2.39 i'm trying to adapt my routine to this platform.
So, this means forget xterm and use gnome-terminal (as default ubuntu terminal). EveryDay i need to connect to several servers, and i've made a Tcl'script to make this more confortable, the end-instruccion of this script is to create a gnome-terminal executing ssh. Here is my command.

gnome-terminal -e "ssh -l userX ServerX" -t " This is SERVERX" --window-with-profile "Xprofile"

This is what i want, but this command create 2 terminals !! . In one of them it "executes" the ssh command without title or profile and in the other terminal it doesn't execute any command but set the title to "This is...." and the profile to Xprofile.
Why ??? How can i solve it using gnome-terminal , xterm isn't an option.

Thx all.

I have found myself the solution to this, simply, changing parametres order, like this:

gnome-terminal --window-with-profile "Xprofile" -t " This is SERVERX" -e "ssh -l userX ServerX"

Now it opens only one window with profile and title characteristics and of course the ssh comand.