You can also use:
PHP Code:
shared.adminMessage("text");
which will display a message even after being disconnected from the server.
One neat thing you might consider adding is perhaps some confirm function. For instance:
PHP Code:
response = confirm("Are you sure you want to do this?");
if (response) {
doit();
}else {
dontdoit();
}
Or by taking advantage of waitfor()
