//¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡
//	Quiz ¿ë ½ºÅ©¸³Æ®
//	by jwkim 2002-09-04
//¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡¦¡

// ÃÊ·Î Ä«¿îÆ®¸¦ ¼¼´Â ÇÔ¼ö - Àç±ÍÈ£Ãâ
// Àü¿ªº¯¼öÀÎ time > 0 ÀÏ¶§±îÁö ³²Àº½Ã°£À» Ç¥½ÃÇØÁØ´Ù
function ShowTimeout() {
	if ( time-- == 0 ) {
		document.quiz.submit();
		alert("½Ã°£ÃÊ°ú·Î ÀÚµ¿ Á¦ÃâµÇ¾ú½À´Ï´Ù.");
		/*
		document.quiz.submit_button.value = "Á¦ÃâºÒ°¡(½Ã°£ÃÊ°ú)";
		document.quiz.submit_button.style.color = "white";
		document.quiz.submit_button.style.backgroundColor = "red";
		*/
		return;
	} else {
		var hour = parseInt(time / 3600);
		var min = parseInt( (time % 3600) / 60 );
		var sec = (time % 3600) % 60;
		document.all.timeout_h.innerText = hour;
		document.all.timeout_m.innerText = min;
		document.all.timeout_s.innerText = sec;
	}
	setTimeout("ShowTimeout()",1000);
}

//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// ³²Àº½Ã°£Ç¥½Ã¸¦ À§ÇÑ ·¹ÀÌ¾î ÀÌµ¿ ÇÔ¼ö
// source from nzeo.com
// modified by jwkim 2002-09-04
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function moveRightEdge() {
	var yMenuFrom, yMenuTo, yOffset, timeoutNextCheck;
	yMenuFrom   = parseInt (divButtonTop.style.top, 10);
	//yMenuTo     = document.body.scrollTop + 150;
	yMenuTo     = document.body.scrollTop + 600;
	if(yMenuTo<150) yMenuTo = 10;

	timeoutNextCheck = 500;

	if (yMenuFrom != yMenuTo) {
		yOffset = Math.ceil(Math.abs(yMenuTo - yMenuFrom) / 10);
		if (yMenuTo < yMenuFrom)
		yOffset = -yOffset;
		divButtonTop.style.top = parseInt (divButtonTop.style.top, 10) + yOffset;
		timeoutNextCheck = 10;
	}
	setTimeout ("moveRightEdge()", timeoutNextCheck);
}

// Å°º¸µå ±ÝÁö
//document.onkeydown=function(){return true;}
//function OnKeyDown() {
//	return false;
//}
//document.onkeydown=OnKeyDown;
