
//var TTSPlayeriframeSrc = "js/TTSPost.htm"; //iframe的页面地址
var TTSPlayeriframeSrc = "../../../tplimg/TTSPost.htm"; //iframe的页面地址
var TTSPostSrc = "http://61.145.119.33/samples.asp"; //要调用的TTSPalyer的地址
//
function fnInitialize()
{
	if (document.readyState == "complete")
	{
		document.all("TTSPlayeriframe").src = TTSPlayeriframeSrc;
	}
	else
	{
		window.setTimeout("fnInitialize()", "300");
	}
}
fnInitialize();

function playerPlay(text)
{
	document.TTSPlayeriframe.document.form1.TTsText.value = text;
	document.TTSPlayeriframe.document.form1.action = TTSPostSrc;
	document.TTSPlayeriframe.document.form1.submit();
}
function playerPlay2(text)
{
	document.TTSPlayeriframe.document.form1.TTsText.value = text;
	document.TTSPlayeriframe.document.form1.action = TTSPostSrc + "?enunciator=3";
	document.TTSPlayeriframe.document.form1.submit();
}