<!--
ver=parseInt(navigator.appVersion)
ie4=(ver>3  && navigator.appName!="Netscape")?1:0
ns4=(ver>3  && navigator.appName=="Netscape")?1:0
ns3=(ver==3 && navigator.appName=="Netscape")?1:0

function playSoundF() {
 if (ie4)
  document.all['BGSOUND_ID'].src='F.wav';
 if ((ns4||ns3)
  && navigator.javaEnabled()
  && navigator.mimeTypes['audio/x-wav']
  && self.document.F.IsReady()
 )
 {
  self.document.F.play()
 }
}

function stopSound() {
 if (ie4) document.all['BGSOUND_ID'].src='F.wav';
 if ((ns4||ns3)
  && navigator.javaEnabled()
  && navigator.mimeTypes['audio/x-midi']
 )
 {
  self.document.F.stop()
 }
}


//-->

