// µî·ÏÀÌ ±ÝÁöµÈ ¸Ê¾ÆÀÌµð ¸®½ºÆ®
mapidList    = new Array(9);
mapidList[0] = "ActiveX";
mapidList[1] = "admin";
mapidList[2] = "images";
mapidList[3] = "mapid";
mapidList[4] = "mapidb";
mapidList[5] = "mapidc";
mapidList[6] = "security";
mapidList[7] = "test";
mapidList[8] = "vipadmin";
mapidList[9] = "jsp";
mapidList[10] = "mapidnew";
mapidList[11] = "w3c";

function checkMapid( target ) {
	if( !checkMapidName(target) )
		return false;
	if( !checkMapidRule(target) )
		return false;
	return true;
}

function checkMapidName( target ) {
	for(i=0;i<mapidList.length;i++) {   
		if( target.toLowerCase() == mapidList[i].toLowerCase() ) {
        	alert( '\''+target+'\'´Â µî·ÏÀÌ ºÒ°¡´ÉÇÑ ¸Ê¾ÆÀÌµð¸íÀÔ´Ï´Ù.' );
			return false;
    	}      
  	}
  	return true;
}

function checkMapidRule( target ) {
	for(i=0;i<target.length;i++) {
    	var a = target.charCodeAt(i);
		var ch = target.charAt(i);    
		if (a > 128) {
			alert('¸Ê¾ÆÀÌµð¸íÀº ¿µ¹®°ú ¼ýÀÚÀÇ Á¶ÇÕ¸¸ °¡´ÉÇÕ´Ï´Ù.´Ù½Ã ÀÔ·ÂÇÏ¿© ÁÖ¼¼¿ä');
			return false;
    	} else if( ( a>0 && a<45 ) || ( a>45 && a<48 )|| ( a>57 && a<65 ) || (a>90 && a<95) ) {
			alert( '¸Ê¾ÆÀÌµð¸íÀº ¿µ¹®°ú ¼ýÀÚÀÇ Á¶ÇÕ¸¸ °¡´ÉÇÕ´Ï´Ù.´Ù½Ã ÀÔ·ÂÇÏ¿© ÁÖ¼¼¿ä' );
      		return false;
    	} else if( (a==96) || a>122 ) {
      		alert( '¸Ê¾ÆÀÌµð¸íÀº ¿µ¹®°ú ¼ýÀÚÀÇ Á¶ÇÕ¸¸ °¡´ÉÇÕ´Ï´Ù.´Ù½Ã ÀÔ·ÂÇÏ¿© ÁÖ¼¼¿ä' );
      		return false;       
    	} else if( (i == 0) & ((a>47 && a<58)||a==45||a==95) ) {
      		alert( '¸Ê¾ÆÀÌµð¸íÀº ¿µ¹®À¸·Î ½ÃÀÛÇÕ´Ï´Ù.');    
     		return false;   
		}
	}
	if( target.length <3 || target.length >16 ) {
		alert('¸Ê¾ÆÀÌµð¸íÀº 3ÀÚÀÌ»ó 16ÀÚ ÀÌÇÏÀÔ´Ï´Ù.');
      	return false;  
	}	
	return true;
}
