// JavaScript Document


function play_sound(f){

   if(document.the_audio){ // if to prevent javascript errors...
     document.the_audio.SetVariable("soundFile",f);
     document.the_audio.TCallFrame("/",1);
     }

}

