Calls the function after the specified delay.
nullobj.setTimeout(func, delay);
func (function) - function to be called
delay (number) - time interval in milliseconds
obj.setTimeout(doSomething, 500);
AW setTimeout method is exactly the same as the standard window.setTimeout() except the supplied function is called as an object method so that this keyword refers to the calling object.