Standalone App to launch Internet Connect

Can anyone tell me if there’s a way to create a standalone applescript application that I can copy to the user’s desktop that launches the user’s Internet Connect application in Mac OS X? Since everyone has a different name for their hard-drive, there’s no way to really hard-code the path.

The reason I need to create a standalone app, instead of just creating an alias, is that I need to have a custom icon and if I just create an alias with applescript then I’m forced to use Apple’s Internet Connect icon.

This should launch Internet Connect.

tell application "Internet Connect" to launch

If you prefer that IC becomes the active/frontmost application, use this:

tell application "Internet Connect" to activate

– Rob