var rpmsti="../rpm/";
function testControls(){
  if(!document.clip.GetSource()&&document.styleSheets){
    if(document.styleSheets[0].cssRules)//Mozilla
      mycss=document.styleSheets[0].cssRules[0].style.display='none';
    else//IE
      mycss=document.styleSheets[0].rules[0].style.display='none';
  }
}
function stop(){document.clip.DoStop();}
function play(file){
  file=file.substring(file.lastIndexOf("/")+1,file.lastIndexOf("."));
  if(document.clip.GetSource()){
    setVol(document.clip.GetVolume());
    document.clip.SetSource(rpmsti+file+".rpm");
    document.clip.DoPlay();
    return false;
  }
  return true;
}
function volume(){
  if(document.clip.GetSource()){
    var l=(location.href.indexOf("dansk/") + location.href.indexOf("raymond/")>-2
      ?"Angiv den nye lydstyrke (værdi mellem 1 og 100)"
      :"Enter new sound level from 1 to 100");
    setVol(window.prompt(l,document.clip.GetVolume()));
  }
}
function setVol(v){
  if(v<1||v>100)v=50;
  document.clip.SetVolume(v);
}

