  function ClearComma(value1){
     newValue='';
     for(i=0;i<value1.length;i++){
        if(value1.charAt(i)!=',')
           newValue = newValue + value1.charAt(i);
     }
     return newValue;
  }
  
   
   function chkInteger(Form1)
   {
   	for( i=0 ; i < Form1.value.length ; i++ ) 
       {
   		if((Form1.value.charAt(i)<'0') || (Form1.value.charAt(i)>'9'))
           {  
   			alert('¼ýÀÚ¸¸ ÀÔ·Â°¡´ÉÇÕ´Ï´Ù.'); 
   			Form1.value=''
   			Form1.focus();
   	        return false; 
   		} 
   		
       } // end for 
   	return true;
   }
              
  function moneyIn(Moneytxt){  
      money = ClearComma(Moneytxt.value);
      Moneytxt.value = money;
      if (chkInteger(Moneytxt)){
         tmpValue = '';
         header = '';
         if (money.charAt(0)=='-' || money.charAt(0)=='+'){
            header = money.charAt(0);
            money = money.substring(1,money.length);
         }
         if(money.length>3){
            while(money.length>3){             
               if (tmpValue!='')
                  tmpValue = money.substring(money.length-3,money.length) + ',' + tmpValue;
               else
                  tmpValue = money.substring(money.length-3,money.length);              
   
               money = money.substring(0,money.length-3);
            }
            if(money.length>0) tmpValue = header + money +','+tmpValue;
            Moneytxt.value = tmpValue;
         }   
      }
   }
   
function fcopy(r){
    var doc = document.body.createTextRange();
    doc.moveToElementText(document.all(r));
    doc.select();
    doc.execCommand('copy');
    alert('¿ìÆí¹øÈ£°¡ º¹»çµÇ¾ú½À´Ï´Ù.\n=============================\n\n¿øÇÏ´Â°÷¿¡¼­ ¿À¸¥ÂÊ ¸¶¿ì½ºÅ¬¸¯ ÈÄ\n\n ºÙ¿©³Ö±â¸¦ ÇÏ½Ã°Å³ª\n\n ´ÜÃàÅ° Ctrl+V¸¦ ÇÏ¼Å¼­ ºÙ¿©³Ö±â¸¦ ÇÏ¼¼¿ä.');
}
function fcopy_eng(r){
    var doc = document.body.createTextRange();
    doc.moveToElementText(document.all(r));
    doc.select();
    doc.execCommand('copy');
    alert('¿µ¹®Ç¥±â°¡ º¹»çµÇ¾ú½À´Ï´Ù.\n=============================\n\n¿øÇÏ´Â°÷¿¡¼­ ¿À¸¥ÂÊ ¸¶¿ì½ºÅ¬¸¯ ÈÄ\n\n ºÙ¿©³Ö±â¸¦ ÇÏ½Ã°Å³ª\n\n ´ÜÃàÅ° Ctrl+V¸¦ ÇÏ¼Å¼­ ºÙ¿©³Ö±â¸¦ ÇÏ¼¼¿ä.');
}

function fcopy_banner(r){
    var doc = document.body.createTextRange();
    doc.moveToElementText(document.all(r));
    doc.select();
    doc.execCommand('copy');
    alert('º¹»çµÇ¾ú½À´Ï´Ù.\n=============================\n\n¿øÇÏ´Â°÷¿¡¼­ ¿À¸¥ÂÊ ¸¶¿ì½ºÅ¬¸¯ ÈÄ\n\n ºÙ¿©³Ö±â¸¦ ÇÏ½Ã°Å³ª\n\n ´ÜÃàÅ° Ctrl+V¸¦ ÇÏ¼Å¼­ ºÙ¿©³Ö±â¸¦ ÇÏ¼¼¿ä.');
}
             
