function SoundPlay( id ) {
	var Sound = document.getElementById( id );
	
	if( !Sound ) return;
	
	Sound.Play();
}
