﻿var elmSound=null;
function playSound(){
				stopSound();
				elmSound = document.createElement("embed");
				elmSound.setAttribute("src", "Voice.mp3");
				elmSound.setAttribute("hidden", true);
				elmSound.setAttribute("autostart", true);
				document.body.appendChild(elmSound);
			}
			
function stopSound(){
				if ( elmSound ) {
					document.body.removeChild(elmSound);
					elmSound = null;
				}
}

function viewDictionary(){
   var theImg=new Image();
   theImg.src="./images/dictionary.gif";
   var imgwin=window.open(theImg.src,"milon","height="+theImg.height+",width="+theImg.width+",status=no,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes");
}
			
