/*
 * (C)Copyright 2004 - 2006 Core Interfaces, Inc.
 *
 * Last Modified by J.H. Lee
 */

/* 각사이트 소개문구. */
if(tts_readCookie("voiceStart").length == 4) {
	document.write("<OBJECT classid='clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95' id='Infoplayer' name='Infoplayer' title='음성안내 메세지' CODEBASE='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715' type='application/x-oleobject' standby='Loading Microsoft Media Player components...' width=0 height=0 style='display:none'>");
	document.write("<param name='AutoStart' value='true'>");
	document.write("<param name='hidden' value='true'>");
	document.write("<param name='TransparentAtStart' value='false'>");
	document.write("<param name='ShowControls' value='0'>");
	document.write("<param name='ShowDisplay' value='0'>");
	document.write("<param name='ShowStatusBar' value='0'>");
	document.write("<param name='AutoSize' value='0'>");
	document.write("<param name='AnimationAtStart' value='true'>");
	document.write("<param name='FileName' value='/tts/intro.wmv'>");
	document.write("음성안내");
	document.write("</object>");

	/* 첫페이지의 onload 이벤트에 삽입해서 안내멘트 출력한다 */
	function f_intro(opt) {

		if (opt == 1) {
			document.getElementById('Infoplayer').play();
		
		}

	}

}