home *** CD-ROM | disk | FTP | other *** search
- // declare timer variable for conditional compare
- myID_stat = null;
-
- // Clear window stat messages after x seconds
-
- function clearstat() {
- window.status="";
- }
-
- // Display stat message
-
- function statmsg(txt) {
- if (myID_stat != null)
- {
- clearTimeout(myID_stat);
- }
- window.status = txt;
- myID_stat = setTimeout("clearstat()",1500);
- return true;
- }