function playS(q) {
	htm = '<embed src="http://banjo.officeboya.jp/midi/' + q + '.mid" width="100%" height="16" autostart="true" repeat="true" loop="true"></embed>';
	if (document.getElementById) {
		document.getElementById("snd").innerHTML = htm;
	} else if (document.all) {
		document.all("snd").innerHTML = htm;
	}
}
