function makeDing()
{
	var flashObject = document.createElement("embed");
	
	flashObject.setAttribute("type", "application/x-shockwave-flash");
	flashObject.setAttribute("id", "makeNewDing");
	flashObject.setAttribute("src", "./program/newEmail.swf");
	flashObject.setAttribute("width", "1");
	flashObject.setAttribute("height", "1");
	
	document.body.appendChild(flashObject);
}

