
var TTSPlayeriframeSrc = "../../../tplimg/TTSPost.htm"; //iframe的页面地址
var TTSPostSrc = "http://178.9.100.244:8083/TTSPalyer/player.aspx"; //要调用的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();
		
 }
 