<!--

	function han(korean) {
		var str = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890 ";
		for (i=0; i< korean.length; i++)
		{
			idcheck = korean.charAt(i);
			for ( j = 0 ;  j < str.length ; j++){
				if (idcheck == str.charAt(j))
					{return false;}
	     			
	     	}
     	}
	     	return true;
	}

// ¼ýÀÚÅ¸ÀÔ ÆÇº°
	function IsKRPhoneNumber(strNumber)
	{
		var bRetNo;
		var strClean;
	
		bRetNo = false;

		if (IsInteger(strNumber) == true && strNumber.length >=2 && strNumber.length <= 4) {
			bRetNo = true;
		}
		return bRetNo;		
	}

	function IsInteger(st)
	{
		if (!IsEmpty(st)){
			for (j=0; j<st.length; j++){
				if (((st.substring(j, j+1) < "0") || (st.substring(j, j+1) > "9")))
				return false;
			}
		} else {
			return false ;
		}
		return true ;
	}

	function IsEmpty(toCheck)
	{
		var chkstr = toCheck + "";
		var is_Space = true ;
		if ( ( chkstr == "") || ( chkstr == null ) )
			return false ;
			for ( j = 0 ; is_Space &&  ( j < chkstr.length ) ; j++){
			if( chkstr.substring( j , j+1 ) != " " )
    	       is_Space = false ;
			}
			return ( is_Space );
	}


	function checkChar(str){
		len=str.value.length;
		for(i=0;i<len;i++){
			if(str.value.charAt(i)=="'" || str.value.charAt(i)=="%"|| str.value.charAt(i)=="\"" || str.value.charAt(i)=="&"){
			 alert("Æ¯¼ö¹®ÀÚ( \",',%,&,...)´Â »ç¿ëÇÏÁö ¸¶¼¼¿ä!");
			 str.focus();
			 return false;
			}
		}
	return true;  
	}
	
	function MM_openBrWindow(theURL,winName,features) { //v2.0
	  window.open(theURL,winName,features);
	}
	
	//ÀüÈ­¹øÈ£¸¸ ÀÔ·Â
	function TelNumChk(p_SelectEle)
	{
	     var i_KeyValue = event.keyCode;		
	    if ((i_KeyValue < 48 || i_KeyValue > 57) && (i_KeyValue != 45) && (i_KeyValue != 46))
	    {
	         alert ("- , 0 ~ 9 , . ¸¸ ÀÔ·Â°¡´ÉÇÕ´Ï´Ù.È®ÀÎ¹Ù¶ø´Ï´Ù.");
	    }
	}
	
	//¼ýÀÚ¸¸ ÀÔ·Â
	function ValidNumChk(p_SelectEle)
	{
	     var i_KeyValue = event.keyCode;		
	    if ((i_KeyValue < 48  ||  i_KeyValue > 58) && (i_KeyValue !=13 ))
	    {
	         alert ("0 ~ 9  ¸¸ ÀÔ·Â°¡´ÉÇÕ´Ï´Ù.È®ÀÎ¹Ù¶ø´Ï´Ù.");
	    }
	}
	
//-->  