Unfortunately, display dialog always requires action from the user to go away, unless you have the notification go away on its own using “giving up after”, without them necessarily reading it.
Assuming you need them to read it, and if you have control over the computers it’s going to be on, you could use Growl to display your notifications.
It occurs to me you could put the display dialog in an idle handler, and if they actually click “ok” have the script quit; if they don’t click “ok”, use “giving up after” as described in the other answers to make it go away after however many seconds you want and then pop it back up again on the next idle. This could be extremely annoying, and still runs the risk of blocking logout if they happen to log out while the dialog is up.
on idle
--display the alert for 7 seconds
display alert "Very Important Message" giving up after 7
if the button returned of the result is "ok" then
quit
end if
--idle for 90 seconds
return 90
end idle