	var timerID = null;
	var timerRunning = false;

	function stopclock () {
		if(timerRunning)
			clearTimeout(timerID);
			timerRunning = false;
	}

	function showtime () {

		var now = new Date();
		var year = now.getYear();
		var month = now.getMonth() + 1;
		var date = now.getDate();
		var day = now.getDay();
		var hours = now.getHours();
		var minutes = now.getMinutes();
		var seconds = now.getSeconds()

		if (day == 0) { day = "ÀÏ¿äÀÏ" }
		if (day == 1) { day = "¿ù¿äÀÏ" }
		if (day == 2) { day = "È­¿äÀÏ" }
		if (day == 3) { day = "¼ö¿äÀÏ" }
		if (day == 4) { day = "¸ñ¿äÀÏ" }
		if (day == 5) { day = "±Ý¿äÀÏ" }
		if (day == 6) { day = "Åä¿äÀÏ" }

		if (month < 10 ) {
			month = "0" + month;
		}	

		if (date < 10 ) {
			date = "0" + date;
		}	

		if (hours < 10 ) {
			hours = "0" + hours;
		}	

		if (minutes < 10 ) {
			minutes = "0" + minutes;
		}	

		if (seconds < 10 ) {
			seconds = "0" + seconds;
		}	
				
		var timeValue = " " + year + "³â " + month + "¿ù " + date + "ÀÏ " + day + " "
			timeValue += hours + ":"
			timeValue += minutes + ":"
			timeValue += seconds
		
		document.watch.nowwatch.value = timeValue;

		timerID = setTimeout("showtime()",1000);
		timerRunning = true;
	}
	
	function startclock () {
		stopclock();
		showtime();
	}

