<!--
       //ÇÑ±¹½Ã°£
	function Clock_Kor()
	{
		var now = new Date()
		var hours = now.getHours()
		var minutes = now.getMinutes()
		var seconds = now.getSeconds()

		timevalue = (hours>=12) ? "¿ÀÈÄ" : "¿ÀÀü"
		timevalue += ((hours>12) ? hours-12 : hours) 
		timevalue += ((minutes<10) ? ":0" : ":") + minutes 
		timevalue += ((seconds<10) ? ":0" : ":") + seconds 
		t.clockkor.value=timevalue
		t.clockkor.disabled=true
		timerID = setTimeout("Clock_Kor()",1000)
	}
	//¹Ì±¹(¿ö½ÌÅÏ)
	function Clock_Ame()
	{
		var now = new Date()
		var hours = now.getHours()
		var minutes = now.getMinutes()
		var seconds = now.getSeconds()
		hours = (hours>=14) ? (hours-14) : (hours+10)
		timevalue = (hours>=12) ? "¿ÀÈÄ" : "¿ÀÀü"
		timevalue += ((hours>12) ? hours-12 : + hours)
		timevalue += ((minutes<10) ? ":0" : ":") + minutes 
		timevalue += ((seconds<10) ? ":0" : ":") + seconds 
		t.clockame.value=timevalue
		t.clockame.disabled=true
		timerID = setTimeout("Clock_Ame()",1000)
	}
	//ÀÏº»(µµÄì)
	function Clock_Jap()
	{
		var now = new Date()
		var hours = now.getHours()
		var minutes = now.getMinutes()
		var seconds = now.getSeconds()

		timevalue = (hours>=12) ? "¿ÀÈÄ" : "¿ÀÀü"
		timevalue += ((hours>12) ? hours-12 : hours) 
		timevalue += ((minutes<10) ? ":0" : ":") + minutes 
		timevalue += ((seconds<10) ? ":0" : ":") + seconds 

		t.clockjap.value=timevalue
		t.clockjap.disabled=true
		timerID = setTimeout("Clock_Jap()",1000)
	}	
-->	