home *** CD-ROM | disk | FTP | other *** search
- // MERC - JCH: Show the splash screen for three seconds
- function Startup()
- {
- try {
- // Show splash screen for three seconds
- setTimeout("CloseSplashScreen()", 3000);
-
- } catch(ex) { dump("Exception in splashscreen.js: Startup\n"); }
- }
-
- function CloseSplashScreen()
- {
- try {
-
- // Handle to xul description element to display controlling site name
- window.close();
-
- } catch(ex) { dump("Exception in splashscreen.js: CloseSplashScreen\n"); }
- }