home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2005 December
/
PCWorld_2005-12_cd.bin
/
komunikace
/
netscape
/
nsb-install-8-0.exe
/
chrome
/
browser.jar
/
content
/
browser
/
splashscreen.js
< prev
next >
Wrap
Text File
|
2005-09-26
|
477b
|
19 lines
// 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"); }
}