//--- ¸ÞÀÎ ¸µÅ© Å¬¸¯½Ã Å×µÎ¸®ÀÜ»óÀÌ ·¹ÀÌ¾Æ¿ôÀ» ¹þ¾î³ª´Â°É ¹æÁöÇÕ´Ï´Ù.
function ybbluring(){
	//if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus();
	if(event.srcElement.tagName=="A") document.body.focus();
}
document.onfocusin = ybbluring;


//¸¶À»¼Ò°³ , È°µ¿¿Õ ÀÎÅÍºä µÎÁÙ·Î º¸ÀÌ°Ô Ã³¸®ÇÕ´Ï´Ù.
//³Ñ¾î¿À´Â°ª str Ãâ·ÂµÉ ¹®ÀÚ, trimlen ¿ä³ðÀÌ»óÀÏ¶§´Â BRÀ» ³Ö¾îÁÖ¼¼¿ä, outputLen = ÃÑ Ãâ·ÂÇÒ ¹®ÀÚ±æÀÌ
function YB_Trim(str, trimlen, outputLen)
{
	var stringcnt = 0;
	
	for( var i = 0 ; i < str.length ; i++ )
	{
		if( str.charAt(i) == "%" )
		{              
			if( str.charAt( ++i ) == "u" )
			{
				stringcnt = stringcnt + 2;
				i = i + 4;                  
			}
			else 
			{
				stringcnt = stringcnt + 1;
				i = i + 1;          
			}
		}
		else
		{
			stringcnt = stringcnt + 1;
		}
	}
	
	if(stringcnt > trimlen)
	{
		//<Br>À» ³Ö¾î¼­ ¸®ÅÏ
		str = str.substr(0, trimlen) + '<br>' +  str.substr(trimlen, outputLen - trimlen);
	
	}
	
	
	document.write(str);
}




function str_length( obj, len )
 {
  var str  = escape(obj.value);
  var object = obj;
  var cnt  = 0;

  for( var i = 0 ; i < str.length ; i++ )
  {
   if( str.charAt(i) == "%" )
   {              
    if( str.charAt( ++i ) == "u" )
    {
     cnt = cnt + 2;
     i = i + 4;                  
                }
    else 
                {
     cnt = cnt + 1;
     i = i + 1;          
    }
   }
   else
   {
    cnt = cnt + 1;
   }
  }
          
  if( cnt > len )
  {
   alert( "ÇÑ±Û " + Math.floor(len/2) + "ÀÚ / ¿µ¹® " + len + "ÀÚ ±îÁö¸¸ ÀÔ·Â°¡´ÉÇÕ´Ï´Ù." );
   object.focus(); 
  }
 }
 
 ///////////////////////////////////////////////////////////
// ¼öÁ¤ÀÚ : ¼Û¿µ¹ü
// ÀÛ¼ºÀÏ : 2008.01.14
// ¿ë  µµ : ¿Â¶óÀÎ ¼¼±Ý°è»ê¼­ È£Ãâ
///////////////////////////////////////////////////////////
//function Go_onlinetax() {
//	window.open('https://secure.devpia.com/onlinetax/', '_blank', 'toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,width=717,height=372');
//}

/////
// ÀÛ¼ºÀÚ : ¼Û¿µ¹ü
// ¿ëµµ : µ¥ºêTV ÆË¾÷ ¿­±â 

function win_TV(RanID, Title)
{	
	window.open('net2/DevTV/PopTV.aspx?RanID=' + RanID +'&Title='+ Title ,'PopTV','width=800, height=764, status=1,toolbar=0,menubar=0,location=0,resizable=0,scrollbars=0,copyhistory=0')
}

 ///////////////////////////////////////////////////////////
// ¼öÁ¤ÀÚ : ±è¸íÁø
// ÀÛ¼ºÀÏ : 2009.07.21
// ¿ë  µµ : E-Mail ¹«´Ü¼öÁý°ÅºÎ È£Ãâ
///////////////////////////////////////////////////////////
function Go_email() {
	window.open('/etc/mailcollection.htm', 'PopEmail', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=570,height=465');
}

//function win_Pds(PdsName)
//{
//	window.open('PopPds.aspx?PdsName=' + PdsName,'PopPds')
//}

