function onTooltip(target,tooltip) {
	var E = window.event;

	var temp = target.value;
	var tag="¿ø½Ê¹éÃµ¸¸½Ê¹éÃµ¾ï½Ê¹éÃµÁ¶½Ê¹éÃµ°æ";
	var result="";
	var i,j;
	var tempSub;
	for(i=0;i<temp.length;i++)
	{
		tempSub = temp.substring(temp.length - 1 - i, temp.length - i);
		if (tempSub != "0") result = tempSub + tag.substring(i,i+1) + result;
		else if (i == 0)
		{
			result = tag.substring(i,i+1) + result;
		}
		else if ( ((i%4) == "0") && ((i+1) != temp.length) )
		{
			for (j=1;j<4;j++)
			{
				if (temp.length - 1 - i - j >= 0)
				{
					if ( temp.substring(temp.length - 1 - i - j, temp.length - i - j) != "0" )
					{
						result = tag.substring(i,i+1) + result;
						j=4;
					}
				}
			}
		}
	}
	tooltip.style.pixelLeft = E.clientX - document.body.scrollLeft - E.offsetX + 57 - result.length * 9;
	tooltip.style.pixelTop =  E.clientY + document.body.scrollTop - E.offsetY - 25;
	tooltip.style.width = result.length * 9 + 20;
	tooltip.style.visibility = "visible";  // ÅøÆÁ º¸ÀÌ±â
	tooltip.innerHTML = result;
}

function offTooltip(tooltip) {
	tooltip.style.visibility = "hidden";  // ÅøÆÁ °¨Ãß±â
}

function onTooltip_under_select(target,tooltip) {
	var E = window.event;

	var temp = target.value;
	var tag="¿ø½Ê¹éÃµ¸¸½Ê¹éÃµ¾ï½Ê¹éÃµÁ¶½Ê¹éÃµ°æ";
	var result="";
	var i,j;
	var tempSub;
	for(i=0;i<temp.length;i++)
	{
		tempSub = temp.substring(temp.length - 1 - i, temp.length - i);
		if (tempSub != "0") result = tempSub + tag.substring(i,i+1) + result;
		else if (i == 0)
		{
			result = tag.substring(i,i+1) + result;
		}
		else if ( ((i%4) == "0") && ((i+1) != temp.length) )
		{
			for (j=1;j<4;j++)
			{
				if (temp.length - 1 - i - j >= 0)
				{
					if ( temp.substring(temp.length - 1 - i - j, temp.length - i - j) != "0" )
					{
						result = tag.substring(i,i+1) + result;
						j=4;
					}
				}
			}
		}
	}
	tooltip.style.pixelLeft = E.clientX - document.body.scrollLeft - E.offsetX + 57 - result.length * 9 - 82;
	if (tooltip.style.pixelLeft < 0)
	{
		tooltip.style.pixelLeft = 0;
	}
	tooltip.style.pixelTop =  E.clientY + document.body.scrollTop - E.offsetY - 12;
	tooltip.style.width = result.length * 9 + 20;
	tooltip.style.visibility = "visible";  // ÅøÆÁ º¸ÀÌ±â
	tooltip.innerHTML = result;
}