// 네임서버 검사
function ValidNS(ns){
	// (문자.)여러개  (문자)
	if(ns.match(/^([0-9a-z\-]+\.)+\w+$/i)){
		return true;
	}else{
		return false;
	}
}

// ip주소 검사
function ValidIP(ip){
	// (숫자.) 3개  (숫자)
	if(ip.match(/^(\d{1,3}\.){3}\d{1,3}$/)){
		return true;
	}else{
		return false;
	}
}


function trim(str){
	str = str.replace(/^\s+/, "");
	str = str.replace(/\s+$/, "");
	return str;
}


function isDomainName(str){
	if(str.match(/^[a-z0-9][a-z0-9-]*[a-z0-9]\.(\w*.)\w+$/, 'gi')){
		return true;
	}else{
		return false;
	}
}
