			var sound3Embed = null;
			var sound4Embed = null;
			
			function init() {
			}
			
			
			function sound3Play() {
				sound3Stop();
				sound4Stop();
				sound3Embed = document.createElement("embed");
				sound4Embed = document.createElement("bgsound");
				sound3Embed.setAttribute("src", "http://www.viennalefatale.com/images/gounod.mid");
				sound4Embed.setAttribute("src", "http://www.viennalefatale.com/images/gounod.mid");
				sound3Embed.setAttribute("hidden", true);
				sound4Embed.setAttribute("hidden", true);
				sound3Embed.setAttribute("autostart", true);
				sound4Embed.setAttribute("autostart", true);
				sound3Embed.setAttribute("autorewind", true);
				sound4Embed.setAttribute("autorewind", true);
				sound4Embed.setAttribute("volume", -500);
				document.body.appendChild(sound3Embed);
				document.body.appendChild(sound4Embed);
			}

			
			function sound3Stop() {
				if ( sound3Embed ) {
					document.body.removeChild(sound3Embed);
					sound3Embed = null;
				}
			}
			function sound4Stop() {
				if ( sound4Embed ) {
					document.body.removeChild(sound4Embed);
					sound4Embed = null;
				}
			}

