<!--
	/*
	 * ID¸¦ °¡Áø °´Ã¼ÀÇ ÆäÀÌÁö »ó ½ÇÁ¦ x,yÁÂÇ¥°ª ±¸ÇÏ±â
	 */
	function getDocRealOffsetTop(o)	{return o ? o.offsetTop		+ getDocRealOffsetTop(o.offsetParent)	: 0;}
	function getDocRealOffsetLeft(o){return o ? o.offsetLeft	+ getDocRealOffsetLeft(o.offsetParent)	: 0;}

	//¿ÀºêÁ§Æ® À§Ä¡ °¡Á®¿À±â ÀÌÁ¾¹ü Ãß°¡
	function getRealTopPosition(obj)
	{
		return obj ? obj.offsetTop + getRealTopPosition(obj.offsetParent) : 0;
	}

	function getRealLeftPosition(obj)
	{
		return obj ? obj.offsetLeft + getRealLeftPosition(obj.offsetParent) : 0;
	}
//-->
