// JavaScript Document
function EvalSoundPlay(soundobj) {
	var thissound=document.getElementById(soundobj);
	thissound.Rewind();
	thissound.Play();
}

function EvalSoundStop(soundobj) {
	var thissound=document.getElementById(soundobj);
	thissound.Stop();
}
