﻿function DoSound(snd) {
	if (document.getElementById(snd)) {
		var sndplay = document.getElementById('dgrsound');
		var xx = document.getElementById('dgrheadertop');
		xx.style.border='solid 1px yellow'; 
		if (sndplay.Play ) {
			xx.style.border='solid 1px green';
			sndplay.Play();
			xx.style.border='solid 1px pink';
		} else {
			xx.style.border='solid 1px purple';
		}
	} else {
		var xx = document.getElementById('dgrheadertop');
		xx.style.border='solid 1px blue';
	}		
}
