  var vdsp;
   var vds;

   window.onload=function(){
     try{
       vdsp = new VoiceDeliveryPlayer("vdsp");
       vds = new VoiceDelivery(vdsp, "vds");
     } catch(e) {
       alert("Cannot Create Object");
     }
   }

   function readOut(no){
       var buf = (document.getElementById("readOutHere" + no)).innerHTML;
       vds.speak(buf);
  }

   
   function readStop(){
              vdsp.speakStop();
  }
