Activating the Send Mail Window ------------------------------- You can use ShellExecute to activate the send mail window. Sample syntax: ShellExecuteA(WindowHandle,"open","mailto:name@domain.com","","",3) ShellExecuteA is a function in SHELL32.DLL in the \windows\system directory. When loading this function, specify following without quotes: ...The function name as "ShellExecuteA" ...The arguments as "long,string,string,string,string,long" ...The return value as "long" WindowHandle is Authorware's internal WindowHandle variable The second and third parameters are self-explanatory. Leave the fourth and fifth parameters as "". The sixth parameter describes how the send mail window will appear. Leave it as 3 for maximized.