/************************************************************************
ÇÔ¼ö¸í		: fn_voiceStart
ÀÛ¼º¸ñÀû	: À½¼º¼­ºñ½º¸¦ on ÇÑ´Ù. 
Parameter	: 
		
Return		:
ÀÛ ¼º ÀÚ	: ¹ÚÁø¾ð
ÃÖÃÊÀÛ¼ºÀÏ	: 2008.03.03
ÃÖÁ¾ÀÛ¼ºÀÏ	:
¼öÁ¤³»¿ª	:
*************************************************************************/
var imgPath;
function fn_changeImg(path) {
	imgPath = path;
	
	if(readCookie("voiceStart") == "start"){
		
	//	document.all.voice_on.style.backgroundImage= "url("+imgPath +"bg_tts_on.gif)";
	//	document.all['voice_start'].src= imgPath +"btn_on_on.gif";
	//	document.all['voice_stop'].src= imgPath +"btn_off.gif";
		document.getElementById("voice_start").src = "/kfda/newmain/img/btn_voice_on_o.gif";
		document.getElementById("voice_stop").src = "/kfda/newmain/img/btn_voice_off.gif";
	}
	else{
	//	document.all.voice_on.style.backgroundImage= "url("+imgPath +"bg_tts.gif)";
	//	document.all['voice_start'].src= imgPath +"btn_on.gif";
	//	document.all['voice_stop'].src= imgPath +"btn_off_on.gif";
		document.getElementById("voice_start").src = "/kfda/newmain/img/btn_voice_on.gif";
		document.getElementById("voice_stop").src = "/kfda/newmain/img/btn_voice_off_o.gif";

	}
	
}

function fn_voiceStart() {	
	
	if(sBot.SwitchCheck() == false){
		sBot.SwitchMode('1');
		f_voiceOn_delST();
		f_voiceOn_delCN();
	}
	else{
		sRes = sBot.OnStart();
		//sRes = 0ÀÌ¸é ¸ðµâÀÌ ¶°ÀÖÁö¾ÊÀ» ¶§
		if(sRes == 0) {
		   return;
		}
		alert('ÀÌ¹Ì µ¿ÀÛÁßÀÔ´Ï´Ù.');
	}
	
	
	//Cookie Àç¼³Á¤
	tts_setCookie("voiceStart", "start", 1);
	fn_changeImg(imgPath);
        
}

/************************************************************************
ÇÔ¼ö¸í		: fn_voiceStart
ÀÛ¼º¸ñÀû	: À½¼º¼­ºñ½º¸¦ on ÇÑ´Ù. 
Parameter	: 
		
Return		:
ÀÛ ¼º ÀÚ	: ¹ÚÁø¾ð
ÃÖÃÊÀÛ¼ºÀÏ	: 2008.03.03
ÃÖÁ¾ÀÛ¼ºÀÏ	:
¼öÁ¤³»¿ª	:
*************************************************************************/
function fn_voiceStop() {
	
	if(sBot.SwitchCheck() == true)
	{
		sBot.SwitchMode('0');
	}
	
	//Cookie Àç¼³Á¤

	tts_setCookie("voiceStart", "stop", 1);
	//sBot.OnStop();
	fn_changeImg(imgPath);
		
}

