
		var text="";
		function say_translate() 
	{
	
	var voice_ = document.getElementById('voice');
	var voice_sel = voice_.options[voice_.selectedIndex].value;
 
 	try{
		req.open("GET", "isound/say.php?sid="+parent.framePlayer.streamID+"&voice="+voice_sel+"&text="+text+"&nocache=" + new Date().getTime(),true);
		req.send(null);
	}catch(err){
		//alert(err);
	}	
	
  }