			var sound1Embed = null;
			var sound2Embed = null;
			
			function init() {
			}
			
			
			function sound1Play() {
				sound1Stop();
				sound2Stop();
				sound1Embed = document.createElement("embed");
				sound2Embed = document.createElement("bgsound");
				sound1Embed.setAttribute("src", "http://www.andrea-kriesch.at/images/javajive.mp3");
				sound2Embed.setAttribute("src", "http://www.andrea-kriesch.at/images/javajive.mp3");
				sound1Embed.setAttribute("hidden", true);
				sound2Embed.setAttribute("hidden", true);
				sound1Embed.setAttribute("autostart", false);
				sound2Embed.setAttribute("autostart", false);
				document.body.appendChild(sound1Embed);
				document.body.appendChild(sound2Embed);
			}

			
			function sound1Stop() {
				if ( sound1Embed ) {
					document.body.removeChild(sound1Embed);
					sound1Embed = null;
				}
			}
			function sound2Stop() {
				if ( sound2Embed ) {
					document.body.removeChild(sound2Embed);
					sound2Embed = null;
				}
			}

