home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magazyn Internet 2002 November
/
MICD_2002_11.iso
/
Www
/
HalfLife
/
resub.halflife.pl
/
js
/
buttons.js
next >
Wrap
Text File
|
2002-09-03
|
511b
|
21 lines
function btnNavigate( url, sound ) {
<!-- document.all.sound.src=sound; -->
btnSound( "play", "document.btn_clicksnd" );
setTimeout( "btnSound('play','document.btn_silence')", 300 );
setTimeout( "window.location='"+url+"'", 310 );
}
function btnSound(sndAction,sndObj) {
if (eval(sndObj) != null) {
if (navigator.appName=='Netscape')
eval(sndObj+((sndAction=='stop')?'.stop()':'.play(false)'));
else if (eval(sndObj+".FileName"))
eval(sndObj+((sndAction=='stop')?'.stop()':'.run()'));
}
}