Speed up If ImageFound

How do I speed this up? I only want it to spend 3 seconds looking for this image…

	if imageFound("CloseIE") then
		click foundImagelocation()
	end if


Thanks

All you have to do is add a time:

if imageFound(3,"someImage")

That should do what you want…

Excellent… works like a charm. Thanks!