<!--
function CheckUIElements()
{
	var yMenu1From, yMenu1To, yOffset, timeoutNextCheck;
	var wndWidth = parseInt(document.body.clientWidth);

	yMenu1From = parseInt (D1.style.top, 10);
	//yMenu1To = document.body.scrollTop + 168; // À§ÂÊ À§Ä¡
	yMenu1To = document.body.scrollTop + 206; // À§ÂÊ À§Ä¡

	timeoutNextCheck = 500;

	if ( yMenu1From != yMenu1To ) 
	{
		yOffset = Math.ceil( Math.abs( yMenu1To - yMenu1From ) / 20 );

		if ( yMenu1To < yMenu1From ) yOffset = -yOffset;

		D1.style.top = parseInt (D1.style.top, 10) + yOffset;
		timeoutNextCheck = 0.1;
	}
	setTimeout ("CheckUIElements()", timeoutNextCheck);
}

function MovePosition()
{
	//var wndWidth = parseInt(document.body.clientWidth);

	// Æä¿¡Áö ·Îµù½Ã Æ÷Áö¼Ç

	D1.style.top = document.body.scrollTop + 206;

	D1.style.visibility = "visible";

	// initializing UI update timer
	CheckUIElements();

	return true;
}
-->
