//¸ÞÀÎÀ½¼º
function voice_main(){

  try{
  var VoiceChk = readCookie("VoiceStart");
    if( VoiceChk != 'start'  && VoiceChk != 'undefined'){ 
          if( FrameLength == 2 ){
              eval(FrameTopName +"VoicePlayer").FileName = "/app/NetLight2/tts_main.wav";
              setTimeout( "eval("+ FrameTopName +"VoicePlayer.play());", 1500);
          }else{
              VoicePlayer.FileName = "/app/NetLight2/tts_main.wav";
              setTimeout( "VoicePlayer.play();", 1500);
          }
    }
  }catch(e){}
}
//·Îµå½Ã ¸ÞÀÎÀ½¼ºÀ» ½ÇÇàÇÑ´Ù.
if (typeof window.addEventListener != "undefined"){
  document.body.addEventListener("load", voice_main, false);
}else if( typeof window.attachEvent != "undefined"){
  window.attachEvent("onload", voice_main);
}