依代码看,应该是一个播放器的控件,用脚本定时去播放,不太明白你具体的'调用'指的是什么?
通常就是放在客户端代码之间,比方:
<script>
templocation=player1.location;
player1.stop();
player1.url="http://www.chinaedu.com/eol/037gz/asf/yk71c610.mp3";
costtime=player1.length;
player1.open();
setTimeout("fun2",costtime);function fun2(){
player1.stop();
player1.url="http://www.chinaedu.com/eol/037gz/asf/yk71c610.mp3";
player1.location=templocation;
player1.open();
}
</script>