function togglehide(divid){
    if(document.getElementById(divid).style.display == 'none'){
      document.getElementById(divid).style.display = 'block';
    }else{
      document.getElementById(divid).style.display = 'none';
    }
  }
  function timedplay(theID, theFile)
{
    function playnow()
    {
      wasp_load(theID, theFile, '', 'true');
    }
var t=setTimeout(playnow,1000);

}
