home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Internet 2002 November / MICD_2002_11.iso / Www / HalfLife / cs.halflife.pl / js / buttons.js next >
Text File  |  2002-09-03  |  511b  |  21 lines

  1.  
  2. function btnNavigate( url, sound ) {
  3.  
  4. <!-- document.all.sound.src=sound; -->
  5. btnSound( "play", "document.btn_clicksnd" );
  6.  
  7. setTimeout( "btnSound('play','document.btn_silence')", 300 );
  8. setTimeout( "window.location='"+url+"'", 310 );
  9.  
  10. }
  11.  
  12. function btnSound(sndAction,sndObj) { 
  13.  
  14. if (eval(sndObj) != null) { 
  15.     if (navigator.appName=='Netscape') 
  16.     eval(sndObj+((sndAction=='stop')?'.stop()':'.play(false)'));
  17.     else if (eval(sndObj+".FileName")) 
  18.     eval(sndObj+((sndAction=='stop')?'.stop()':'.run()')); 
  19.  
  20. }