set result to display dialog "Password:" default answer "" buttons {"Cancel", "OK"} default button "OK"
if button returned of result is "OK" then
	set passwd to text returned of result
	tell application "MacSecSH PPC"
		activate
		connect "8500 SSH2" host "192.168.1.41" login "jps" password passwd waiting "yes"
	end tell
end if
