function play(soundobj)
{
var thissound = eval(soundobj);
thissound.CurrentPosition=0;
thissound.play();
}

function stop(soundobj)
{
var thissound = eval(soundobj);
thissound.stop();
}
