// -----------------
//  Additional Java Resources
// 
//
// 
// -----------------
	function EvalSound(soundobj) {
	  var thissound= eval("document."+soundobj);
	  thissound.Play();
	}

	function StartSound(soundobj) {
	  var thissound= eval("document."+soundobj);
	  thissound.Play();
	}

	function StopSound(soundobj) {
	  var thissound= eval("document."+soundobj);
	  thissound.Stop();
	}
