¿¡¾îÄÁ¼³Ä¡¾÷ü ¾È³»

ÀÎõ±¤¿ª½Ã

032-467-6004

°æ±â¼ö¿ø½Ã

031-239-3196

°æ±âÈ­¼º½Ã

031-377-6855

°æ±â¾È»ê½Ã

°æ±â¿À»ê½Ã

°æ±â¿ëÀνÃ

031-377-6855

°æ±â¼º³²½Ã

°æ±â½ÃÈï½Ã

010-9266-5975

°æ±âºÎõ½Ã

032-204-8010

Àü±¹ ¿¡¾îÄÁ¾÷ü ¾È³»


ÃÑ °Ô½Ã¹° 209°Ç, ÃÖ±Ù 0 °Ç
   
±Ý¾×¿¡ Á¡Âï°í ÇÑ±Û Ç¥½ÃÇϱâ
±Û¾´ÀÌ : ÇÁ·Î ³¯Â¥ : 2006-12-03 (ÀÏ) 19:40 Á¶È¸ : 9158
<HTML>
<HEAD>
<TITLE>±Ý¾× Ãâ·Â</TITLE>
<scRIPT Language='Javascript'>


//±Ý¾×¿¡ , Âï±â
function numchk(num){
num=new String(num);
num=num.replace(/,/gi,"");
return numchk1(num);
}

function numchk1(num){
var sign="";
if(isNaN(num)) {
alert("¼ýÀÚ¸¸ ÀÔ·ÂÇÒ ¼ö ÀÖ½À´Ï´Ù.");
return 0;
}
if(num==0) {
return num;
}

if(num<0){
num=num*(-1);
sign="-";
}
else{
num=num*1;
}
num = new String(num)
var temp="";
var pos=3;
num_len=num.length;
while (num_len>0){
num_len=num_len-pos;
if(num_len<0) {
pos=num_len+pos;
num_len=0;
}
temp=","+num.substr(num_len,pos)+temp;
}
return sign+temp.substr(1);
}

// ±Ý¾× ¼ýÀÚ¸¦ Çѱ۷Î
function num_han(num)
{
if ( num == "1" ) return "ÀÏ";
else if ( num == "2" ) return "ÀÌ";
else if ( num == "3" ) return "ȕ";
else if ( num == "4" ) return "ȍ";
else if ( num == "5" ) return "¿À";
else if ( num == "6" ) return "À°";
else if ( num == "7" ) return "Ä¥";
else if ( num == "8" ) return "ÆÈ";
else if ( num == "9" ) return "±¸";
else if ( num == "½Ê" ) return "½Ê";
else if ( num == "¹é" ) return "¹é";
else if ( num == "õ" ) return "õ";
else if ( num == "¸¸" ) return "¸¸ ";
else if ( num == "¾ï" ) return "¾ï ";
else if ( num == "Á¶" ) return "Á¶ ";
else if ( num == "0" ) return "";
}

function NUM_HAN(num,mode,return_input)
{
if ( num == "" || num == "0" ) {
if ( mode == "3" ) {
return_input.value = "";
}
return;
}

num=new String(num);
num=num.replace(/,/gi,"");

var len = num.length;
var temp1 = "";
var temp2 = "";

if ( len/4 > 3 && len/4 <= 4 ) {
if ( len%4 == 0 ) {
temp1 = ciphers_han(num.substring(0,4)) + "Á¶" + ciphers_han(num.substring(4,8)) + "¾ï" + ciphers_han(num.substring(8,12)) + "¸¸" + ciphers_han(num.substring(12,16));
}
else {
temp1 = ciphers_han(num.substring(0,len%4)) + "Á¶" + ciphers_han(num.substring(len%4,len%4+4)) + "¾ï" + ciphers_han(num.substring(len%4+4,len%4+8)) + "¸¸" + ciphers_han(num.substring(len%4+8,len%4+12));
}
}
else if ( len/4 > 2 && len/4 <= 3 ) {
if ( len%4 == 0 ) {
temp1 = ciphers_han(num.substring(0,4)) + "¾ï" + ciphers_han(num.substring(4,8)) + "¸¸" + ciphers_han(num.substring(8,12));
}
else {
temp1 = ciphers_han(num.substring(0,len%4)) + "¾ï" + ciphers_han(num.substring(len%4,len%4+4)) + "¸¸" + ciphers_han(num.substring(len%4+4,len%4+8));
}
}
else if ( len/4 > 1 && len/4 <= 2 ) {
if ( len%4 == 0 ) {
temp1 = ciphers_han(num.substring(0,4)) + "¸¸" + ciphers_han(num.substring(4,len));
}
else {
temp1 = ciphers_han(num.substring(0,len%4)) + "¸¸" + ciphers_han(num.substring(len%4,len));
}
}
else if ( len/4 <= 1 ) {
temp1 = ciphers_han(num.substring(0,len));
}

for (var i=0; i<temp1.length; i++) {
temp2 = temp2 + num_han(temp1.substring(i, i+1));
}

temp3=new String(temp2);
temp3=temp3.replace(/¾ï ¸¸/gi,"¾ï ");
temp3=temp3.replace(/Á¶ ¾ï/gi,"Á¶ ");

if ( mode == 1 ) {
alert(temp3 + " ¿ø");
} else if ( mode == 2 ) {
return temp3;
} else if ( mode == 3 ) {
return_input.value = "( " + temp3 + " ¿ø )";
}
}

function ciphers_han(num)
{
var len = num.length;
var temp = "";

if ( len == 1 ) {
temp = num;
}
else if ( len == 2 ) {
temp = num.substring(0,1) + "½Ê" + num.substring(1,2);
}
else if ( len == 3 ) {
temp = num.substring(0,1) + "¹é" + num.substring(1,2) + "½Ê" + num.substring(2,3);
}
else if ( len == 4 ) {
temp = num.substring(0,1) + "õ" + num.substring(1,2) + "¹é" + num.substring(2,3) + "½Ê" + num.substring(3,4);
}

num=new String(temp);
num=num.replace(/0½Ê/gi,"");
num=num.replace(/0¹é/gi,"");
num=num.replace(/0õ/gi,"");
return num;
}

function moncom(mon) {
var factor = mon.length % 3;
var su = (mon.length - factor) / 3;
var com = mon.substring(0,factor);

for(var i=0; i < su ; i++) {
if((factor == 0) && (i == 0)) {
com += mon.substring(factor+(3*i), factor+3+(3*i));
}
else {
com += "," ;
com += mon.substring(factor+(3*i), factor+3+(3*i));
}
}
document.write(com);
}


</scRIPT>
</HEAD>
<body>
±Ý¾×<form name=form action=# method=get>
<input type="text" name="A_EMONEY" size=18 maxLength=15 style="text-align:right" onkeypress="NUM_HAN(this.value,3,document.form.EMONEY_HAN)" onkeyup="this.value=numchk(this.value);NUM_HAN(this.value,3,document.form.EMONEY_HAN)"> ¿ø&nbsp;
<input type="text" name="EMONEY_HAN" readonly style="border:0;" size="50">
</form>
</body>
</html>

   


ÃÑ °Ô½Ã¹° 209°Ç, ÃÖ±Ù 0 °Ç
¹øÈ£ Á¦¸ñ ±Û¾´ÀÌ ³¯Â¥ Á¶È¸
69  ¹è°æ³Ö±âÀÇ ¸ðµç °Í ÅÂ±×¾ß 09-15 9260
68  ÆäÀÌÁö ÀÚµ¿À¸·Î À̵¿ ¿î¿µÀÚ 02-04 9254
67  Å׵θ®¼±À» ¹Ý¦¹Ý¦ÇÏ°Ô ¸¸µéÀÚ ¿î¿µÀÚ 02-16 9234
66  »óÅÂÇ¥½ÃÁÙ¿¡ ±ÛÀÚ ¾È³ª¿À°Ô Çϱâ ÇÁ·Î 05-31 9220
65  ¹«´Ü¸µÅ© ±ÝÁö ½ºÅ©¸³Æ® ¾Ë¸®¹Ì 10-15 9219
64  ¸ÚÁø ¹è°æ½ºÅ¸ÀÏ ¼Ò½º °­¹Ì¶õ 03-14 9215
63  À̹ÌÁö¿¡ Á¡¼± Å׵θ®¸¦ ¸¸µéÀÚ ¿î¿µÀÚ 02-09 9209
62  shift, ctrl (½¬ÇÁÆ®, ÄÁÆ®·Ñ)Å° Ŭ¸¯ÇÏ¸é °æ°í¡¦ dlalwk 10-05 9208
61  ÇÁ¸°Æ® Çϱ⠿ÀÚ 02-04 9204
60  ¸¶¼Ò Ä÷¯ ¼±Åà ´ëÈ­»óÀÚ ÇÁ·Î 12-17 9195
59  µ¿ÀÇÇÏÁö ¾ÊÀ¸¸é ¹öÆ°À» ´©¸¦¼ö ¾ø½À´Ï´Ù ÀÌ¿µ¹Ì 03-11 9193
58  ÀÚ¹Ù½ºÅ©¸³Æ® ¹ÙÀÌ¿À ¸®µë ÇÁ·Î 10-04 9193
57  µé¾î¿Ã ¶§ Áñ°Üã±â â ¶ç¿ì±â ¿î¿µÀÚ 02-04 9190
56  ¸µÅ©¸¶´Ù °¢±â ´Ù¸¥ css È¿°ú Áֱ⠿ÀÚ 02-05 9190
55  ±Ý¾×¿¡ Á¡Âï°í ÇÑ±Û Ç¥½ÃÇϱâ ÇÁ·Î 12-03 9159
54  ¸µÅ©¿¡ ¸¶¿ì½º¸¦ ´ë¸é µû¶ó ¶° ÀÖ´Â ·¹À̾î(dz¼±¡¦ ¹Ù¶÷µ¹ÀÌ 04-02 9149
53  Ã¢´Ý±â ¹öÆ° ¼Ò½º ¿î¿µÀÚ 02-03 9147
52  ÇöÀçÀÇ ³¯Â¥¿Í ½Ã°£ ¾Ë·ÁÁÖ´Â ¼Ò½º ¿î¿µÀÚ 02-03 9146
51  Åõ¸íÇÑ ½ºÅ©·Ñ¹Ù ¿î¿µÀÚ 03-02 9130
50  ¿Á¼Çó·³ ¼Ò½ºº¸±â ¾ÈµÇ´Â °÷ÀÇ ¼Ò½º¸¦ º¸´Â ¹æ¡¦ ¿î¿µÀÚ 02-27 9125
óÀ½  1  2  3  4  5  6  7  8  9  10  ´ÙÀ½  ¸Ç³¡
 

ȸ»ç¼Ò°³ | ÀÌ¿ë¾à°ü | °³ÀÎÁ¤º¸Ãë±Þ¹æħ | Ã¥ÀÓÀÇÇÑ°è¿Í ¹ýÀû°íÁö | À̸ÞÀϹ«´Ü¼öÁý°ÅºÎ | ÀÌ¿ë¾È³»