On 6/16/2006 9:27 AM, Philip Friedman - Auto Europe wrote: > A setTimeout improves the timing of the display. Thanks. > > What is the recommended method to "pass arguments" from the setTimeout > caller to the callee? Pass more arguments to setTimeout. setTimeout(alert, 500, 'Ooga Booga!'); For example.