	// ¼ýÀÚÀÔ·ÂÁ¦¾î
	function pub_chkKeyPress(chkType){
		// delete control key ¿Í »óÇÏÁÂ¿ì Çã¿ëÇÔ.
		// Delete = 46, BackSpace=8 , Tab=9 , left-right=37-40 Enter = 13 

		if( ((event.keyCode>=37)&&(event.keyCode<=40))||((event.keyCode>=8)&&(event.keyCode<=9))||(event.keyCode==46) ) {
			return true;
		}
		if(chkType==1){
			if( ( (event.keyCode>=48)&&(event.keyCode<=57) ) || ( (event.keyCode>=96)&&(event.keyCode<=105) ) ) 
			{
				return true;
			}	
			else
			{
				event.returnValue=false;
				return false;
			} 
		}
	// ¿µ¹®¸¸ ÀÔ·Â
		if(chkType==2){
			if( ( (event.keyCode>=65)&&(event.keyCode<=90) ) || event.keyCode==8 || event.keyCode==32) 
			{
				return true;
			}	
			else
			{
				event.returnValue=false;
				return false;
			} 
		}
	// ¼ýÀÚ ¿µ¹®,- ¸¸ ÀÔ·Â
		if(chkType==4){
			if( ( (event.keyCode>=65)&&(event.keyCode<=90) ) ||( (event.keyCode>=48)&&(event.keyCode<=57) ) || ( (event.keyCode>=96)&&(event.keyCode<=105) )) 
			{
				return true;
			}	
			else
			{
				event.returnValue=false;
				return false;
			} 
		}
	}

	function IsNumber(formname) {
		var form=eval("document.agree_Chk." + formname);

		for(var i=0; i < form.value.length; i++) {
			var chr = form.value.substr(i,1);
			if((chr < '0' || chr > '9')) {
				return false;
			}
		}
		return true;
	}

	function MM_openBrWindow(theURL,winName,features) { //v2.0
	  window.open(theURL,winName,features);
	}

//³¯Â¥¸¦ ¹Þ¾Æ ¿äÀÏ·Î º¯È¯
	var week = new Array('È­','¼ö','¸ñ','±Ý','Åä','ÀÏ','¿ù');
	function  checkDate(da){
	 var dateArrray   = new Array();
	 var tempArrray   = new Array();
	 var year,month,date,day;
	 //°ø¹é¹®ÀÚ ÀÌ¿ë
	 dateArrray = da.split(' ');
	
	 for(var i=0;i<dateArrray.length;i++){
	   if(isFinite(dateArrray[i])){
		tempArrray[i] = dateArrray[i];  
	   }else{
		 tempArrray[i] = parseInt(dateArrray[i]);
	   }
	 }
	 year = tempArrray[0];
	 month = tempArrray[1];
	 date = tempArrray[2];
		//
	 var currDate = new Date(year, parseInt(month,10)-1 , date );
	 
	 day = currDate.getDay();

	 for(var j=0;j<7;j++ ){
		 if(day == j){
	   return week[j];
	  }
	 }

	}
//³¯Â¥¸¦ ¹Þ¾Æ ¿äÀÏ·Î º¯È¯ ³¡

//ajax¸¦ ÀÌ¿ëÇÑ ÇöÀç½Ã°£ °¡Á®¿À±â
	var obj;
	var iDate;
	var iTime;
	var now = new Date();
	
	// test.php¸¦ ÅëÇØ¼­ ¼­¹ö½Ã°£À» °¡Á®¿ÂÈÄ now¿¡ ¼¼ÆÃ
	function junTime() { 
        req = createHttpRequest() 
        req.onreadystatechange = function() { 
            if( req.readyState == 4 ) {					// 4 = ÀÀ´ä¿Ï·á
														// 2006-04-11 23:04:43
				obj	= req.responseText;					// 0123456789012345678
														// return value ¸¦ obj¿¡ ³ÖÀ½.
				now.setYear( obj.substr(0,4) );			// ³âµµ ¼³Á¤
				now.setMonth( obj.substr(5,2) );		// ¿ù ¼³Á¤
				now.setDate( obj.substr(8,2) );			// ³¯Â¥ ¼³Á¤
				now.setHours( obj.substr(11,2) );		// ½Ã°£ ¼³Á¤
				now.setMinutes( obj.substr(14,2) );		// ºÐ ¼³Á¤
				now.setSeconds( obj.substr(17,2) );		// ÃÊ ¼³Á¤

				realTime();								// ¼­¹ö½Ã°£À» ¼¼ÆÃ¿Ï·áÈÄ realTime() È£Ãâ
            } 
        } 
        req.open("GET","../config/time_system.php");					// test.php¸¦ getÀ¸·Î È£Ãâ
        req.send("");									// ´øÁö´Â°ª ¾øÀ½
    }     
	
	// 1ÃÊ¸¶´Ù ½Ã°£ °»½Å
	function realTime() {
		now.setTime( Date.parse(now)+1000 );			// ÇöÀç½Ã°£ + 1ÃÊ
		beDate	= now.getYear() + '³â '								// ³¯ÀÚ°ª Á¤¸®
				+ twoDigit( now.getMonth().toString() ) + '¿ù ' 
				+ twoDigit( now.getDate().toString() ) + 'ÀÏ';
		var iWeek = checkDate(beDate);
		iDate = beDate + '(' + iWeek + ') ';
		iTime	= twoDigit( now.getHours().toString() ) + ':'		// ½Ã°£°ª Á¤¸®
				+ twoDigit( now.getMinutes().toString() ) + ':' 
				+ twoDigit( now.getSeconds().toString() );
		//Clock.innerHTML = iDate + '' + iTime;
		//Clock.innerHTML = iTime;
		document.all['systime'].value = iDate + '' + iTime;
		window.setTimeout( realTime, 1000);				// 1ÃÊ¸¶´Ù realTime() È£Ãâ
	}
	
	// 1ÀÚ¸®·Î µÇ¾î ÀÖ´Ù¸é 2ÀÚ¸®·Î º¯È¯
	function twoDigit(oj) {
		if(oj.length == 1) return '0'+oj;
		else return oj;
	}
//ajax¸¦ ÀÌ¿ëÇÑ ÇöÀç½Ã°£ °¡Á®¿À±â ³¡

	//Æ÷Ä¿½º ³Ñ±â±â
	function focus_next(num,fromform,toform){
		var str = fromform.value.length;
		if(str == num)
			toform.focus();
	}

	// ÁÖ¹Î¹øÈ£ Ã¼Å©
	function check_juminno(juminno){
		if(juminno=="" || juminno==null || juminno.length!=13){ return false; }
		var jumin1 = juminno.substr(0,6);
		var jumin2 = juminno.substr(6,7);
		var yy = jumin1.substr(0,2);	// ³âµµ
		var mm = jumin1.substr(2,2);	// ¿ù
		var dd = jumin1.substr(4,2);	// ÀÏ
		var genda = jumin2.substr(0,1);	// ¼ºº°
		var msg, ss, cc;

		if(!isNumeric(jumin1)){ return false;}
		if(jumin1.length != 6){ return false; }
		if(yy < "00" || yy > "99" || mm < "01" || mm > "12" || dd < "01" || dd > "31"){ return false; }
		if(!isNumeric(jumin2)){ return false; }
		if(jumin2.length != 7){ return false; }
		if(genda < "1" || genda > "4"){ return false; }
		cc = (genda == "1" || genda == "2") ? "19" : "20";
		if(isYYYYMMDD(parseInt(cc+yy), parseInt(mm), parseInt(dd)) == false){ return false; }
		if(!isSSN(jumin1, jumin2)){ return false; }
		return true;
	}

	// »ç¾÷ÀÚµî·Ï¹øÈ£ Ã¼Å©
	function check_busino(vencod){
		var sum = 0;
		var getlist =new Array(10);
		var chkvalue =new Array("1","3","7","1","3","7","1","3","5");
		for(var i=0; i<10; i++){ getlist[i] = vencod.substring(i, i+1); }
		for(var i=0; i<9; i++){ sum += getlist[i]*chkvalue[i]; }
		sum = sum + parseInt((getlist[8]*5)/10);
		sidliy = sum % 10;
		sidchk = 0;
		if(sidliy != 0){ sidchk = 10 - sidliy; }
		else { sidchk = 0; }
		if(sidchk != getlist[9]){ return false; }
		return true;
	}

	// Àç¿Ü±¹ÀÎ ¹øÈ£ Ã¼Å©
	function check_fgnno(fgnno){
		var sum=0;
		var odd=0;
		buf = new Array(13);
		for(i=0; i<13; i++){ buf[i]=parseInt(fgnno.charAt(i)); }
		odd = buf[7]*10 + buf[8];
		if(odd%2 != 0){ return false; }
		if((buf[11]!=6) && (buf[11]!=7) && (buf[11]!=8) && (buf[11]!=9) ){
			return false;
		}
		multipliers = [2,3,4,5,6,7,8,9,2,3,4,5];
		for(i=0, sum=0; i<12; i++){ sum += (buf[i] *= multipliers[i]); }
		sum = 11 - (sum%11);
		if(sum >= 10){ sum -= 10; }
		sum += 2;
		if(sum >= 10){ sum -= 10; }
		if(sum != buf[12]){ return false }
		return true;
	}

	function isYYYYMMDD(y, m, d){
		switch(m){
		case 2:	// 2¿ùÀÇ °æ¿ì
			if(d > 29) return false;
			if(d == 29){
				// 2¿ù 29ÀÇ °æ¿ì ´çÇØ°¡ À±³âÀÎÁö¸¦ È®ÀÎ
				if((y % 4 != 0) || (y % 100 == 0) && (y % 400 != 0))
					return false;
			}
			break;
		case 4:	// ÀÛÀº ´ÞÀÇ °æ¿ì
		case 6:
		case 9:
		case 11:
			if(d == 31) return false;
		}
		// Å« ´ÞÀÇ °æ¿ì
		return true;
	}

	function isNumeric(s){
		for(i=0; i<s.length; i++){
			c = s.substr(i, 1);
			if(c < "0" || c > "9") return false;
		}
		return true;
	}

	function isLeapYear(y){
		if(y < 100)
		y = y + 1900;
		if((y % 4 == 0) && (y % 100 != 0) || (y % 400 == 0) ){
			return true;
		} else {
			return false;
		}
	}

	function getNumberOfDate(yy, mm){
		month = new Array(29,31,28,31,30,31,30,31,31,30,31,30,31);
		if(mm == 2 && isLeapYear(yy)) mm = 0;
		return month[mm];
	}

	function isSSN(s1, s2){
		n = 2;
		sum = 0;
		for(i=0; i<s1.length; i++)
			sum += parseInt(s1.substr(i, 1)) * n++;
		for(i=0; i<s2.length-1; i++){
			sum += parseInt(s2.substr(i, 1)) * n++;
			if(n == 10) n = 2;
		}
		c = 11 - sum % 11;
		if(c == 11) c = 1;
		if(c == 10) c = 0;
		if(c != parseInt(s2.substr(6, 1))) return false;
		else return true;
	}

	// ÇÑ±Û¸¸ ÀÔ·Â¹Þ±â (ÃÊ¼ºÃ¼ ¹«½Ã)
// ³ª¸ÓÁö ±ÛÀÚ ¹«½Ã
function chkHan(this_s,type){
	/*
	type
	-> 'c' : ÃÊ¼º Æ÷ÇÔ
	-> 's' : ÃÊ¼º Æ÷ÇÔ + °ø¹é Æ÷ÇÔ
	-> '' : ÃÊ¼º, °ø¹é ¹«½Ã
	*/
	temp_value = this_s.value.toString();
	regexp = '';
	repexp = '';
	switch(type){
		case 'c': regexp = /[^¤¡-¤¾°¡-ÆR]/g;break;
		case 's': regexp = /[^¤¡-¤¾°¡-ÆR\s]/g;break;
		case '':	regexp = /[^°¡-ÆR]/g; break;
		default : regexp = /[^¤¡-¤¾°¡-ÆR\s]/g;
	}
	if(regexp.test(temp_value)){
		temp_value = temp_value.replace(regexp,repexp);
		this_s.value = temp_value;
	}
}

// ÇÑ±Û¸¸ ÀÔ·Â¹Þ±â (ÃÊ¼ºÃ¼ Æ÷ÇÔ)
// ³ª¸ÓÁö ±ÛÀÚ ¹«½Ã
function chkHan_cho(this_s){
	chkHan(this_s,'c');
}

// ÇÑ±Û¸¸ ÀÔ·Â¹Þ±â (ÃÊ¼ºÃ¼ Æ÷ÇÔ, °ø¹é Æ÷ÇÔ)
// ³ª¸ÓÁö ±ÛÀÚ ¹«½Ã
function chkHan_cho_space(this_s){
	chkHan(this_s,'s');
}

// ¿µ¾î¿Í ¼ýÀÚ¸¸ ÀÔ·Â¹Þ±â
function chkNumEng(this_s){
	temp_value = this_s.value.toString();
	regexp = /[^0-9a-zA-Z]/g;
	repexp = '';
	temp_value = temp_value.replace(regexp,repexp);
	this_s.value = temp_value;
}

// ³ª¸ÓÁö ±ÛÀÚ ¹«½Ã
function chkNum(this_s,type){
	/*
	type
	-> 'int' : ¾çÀÇ Á¤¼ö
	-> 'float' : ¾çÀÇ ½Ç¼ö
	-> '-int' : À½ÀÇ Á¤¼ö Æ÷ÇÔ
	-> '-int' : À½ÀÇ ½Ç¼ö Æ÷ÇÔ
	*/
	temp_value = this_s.value.toString();
	regexp = /[^-\.0-9]/g;
	repexp = '';
	temp_value = temp_value.replace(regexp,repexp);
	regexp = '';
	repexp = '';
	switch(type){
		case 'int':	 regexp = /[^0-9]/g; break;
		case 'float':regexp = /^(-?)([0-9]*)(\.?)([^0-9]*)([0-9]*)([^0-9]*)/; break;
		case '-int':	regexp = /^(-?)([0-9]*)([^0-9]*)([0-9]*)([^0-9]*)/;break;
		case '-float':regexp = /^(-?)([0-9]*)(\.?)([^0-9]*)([0-9]*)([^0-9]*)/; break;
		default : regexp = /[^0-9]/g; break;
	}
	switch(type){
		case 'int':repexp = '';break;
		case 'float':repexp = '$2$3$5';break;
		case '-int':	repexp = '$1$2$4';break;
		case '-float':repexp = '$1$2$3$5'; break;
		default : regexp = /[^0-9]/g; break;
	}
	temp_value = temp_value.replace(regexp,repexp);
	this_s.value = temp_value;
}
// ¾çÀÇ Á¤¼ö¸¸ ÀÔ·Â¹Þ±â
function chkNum_int(this_s){
	chkNum(this_s,'int');
}
// ¾çÀÇ ½Ç¼ö¸¸ ÀÔ·Â¹Þ±â
function chkNum_float(this_s){
	chkNum(this_s,'float');
}

/*-------------------------------------------------------------------------------*/

// ¿µ¾î¸¸ ÀÔ·Â¹Þ±â  (´ë¼Ò¹®ÀÚ)
// ³ª¸ÓÁö ±ÛÀÚ ¹«½Ã
function chkEng(this_s,type){
	temp_value = this_s.value.toString();
	regexp = '';
	repexp = '';
	switch(type){
		case 'small':regexp = /[^a-z]/g;break;
		case 'big':regexp = /[^A-Z]/g;break;
		case 'all':regexp = /[^a-z]/i;break;
		default :regexp = /[^a-z]/i;break;
	}
	temp_value = temp_value.replace(regexp,repexp);
	this_s.value = temp_value;
}

// ¿µ¾î¸¸ ÀÔ·Â¹Þ±â  (¼Ò¹®ÀÚ)
// ³ª¸ÓÁö ±ÛÀÚ ¹«½Ã
function chkEng_small(this_s){
	chkEng(this_s,'small');
}

// ¿µ¾î¸¸ ÀÔ·Â¹Þ±â  (´ë¹®ÀÚ)
// ³ª¸ÓÁö ±ÛÀÚ ¹«½Ã
function chkEng_big(this_s){
	chkEng(this_s,'big');
}

	//ÀÔ·Â³»¿ë Byte·Î Ã¼Å©
	function byte_chk(input_name){
		var input_name_str, byte_count=0, input_name_length=0, one_str;
		input_name_str = new String(input_name.value);
		input_name_length = input_name_str.length;
		for(i=0;i<input_name_length;i++){
			one_str=input_name_str.charAt(i);
			if(escape(one_str).length > 4){
				byte_count+=2;
			}else if(one_str != '\r'){
				byte_count++;
			}
		}
		return byte_count;
	}

	function SelEmail(value){
		if(value=="Á÷Á¢ÀÔ·Â"){
			document.member_frm.email2.readOnly = false;
			document.member_frm.email2.value = "";
			document.member_frm.email2.focus();
		}else{
			document.member_frm.email2.readOnly = true;
			document.member_frm.email2.value = value;
			
		}
   }

	//È¸¿ø°¡ÀÔ ÆûÃ¼Å©
	function RegChk(){
		var fr2 = document.member_frm;
		
		if(fr2.eng_name.value==""){
			alert("¿µ¹®¸íÀ» ÀÔ·ÂÇØ ÁÖ¼¼¿ä.");
			fr2.eng_name.focus();
			return false;
		}

		if(fr2.country.value==""){
			alert("±¹ÀûÀ» ¼±ÅÃÇØ ÁÖ¼¼¿ä.");
			fr2.country.focus();
			return;
		}
		if(fr2.user_id.value=="") {
			window.alert("¾ÆÀÌµð(ID)¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä!");
			fr2.user_id.focus();
			return false;
		}
		if(fr2.id_ok.value !="ok") {
		window.alert("Áßº¹È®ÀÎÀ» ÇØ¾ßÇÕ´Ï´Ù!");
		fr2.user_id.focus();
		return false;
		}
		if(fr2.user_id.value=="guest") {
			window.alert("guest´Â µî·Ï ÇÏ½Ç¼ö ¾ø´Â ¾ÆÀÌµð ÀÔ´Ï´Ù.");
			fr2.user_id.focus();
			return false;
		}
		if(fr2.user_id.value.length < 4 || fr2.user_id.value.length > 12) {
			window.alert("ID´Â 4ÀÚ ÀÌ»ó  12ÀÚ ÀÌÇÏÀÇ ¿µ¹®/¼ýÀÚ ¶Ç´Â ¿µ¹®°ú ¼ýÀÚ Á¶ÇÕÀÇ ¹®ÀÚ¿­ÀÌ¾î¾ß ÇÕ´Ï´Ù!");
			fr2.user_id.focus();
			return false;
		}

		if(fr2.passwd.value=="") {
			window.alert("ºñ¹Ð¹øÈ£¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä!");
			fr2.passwd.focus();
			return false;
		}
		if(fr2.passwd.value.length < 4 || fr2.passwd.value.length > 15) {
			window.alert("ºñ¹Ð¹øÈ£´Â 4ÀÚ ÀÌ»ó 15ÀÚ ÀÌÇÏÀÇ ¼ýÀÚ/¿µ¹® ¶Ç´Â ¼ýÀÚ¿Í ¿µ¹® Á¶ÇÕÀÇ ¹®ÀÚ¿­ÀÌ¾î¾ß ÇÕ´Ï´Ù.");
			fr2.passwd.focus();
			return false;
		}
		if(fr2.passwd1.value=="") {
			window.alert("ºñ¹Ð¹øÈ£ È®ÀÎÀ» À§ÇØ ºñ¹Ð¹øÈ£¸¦ ´Ù½Ã ÀÔ·ÂÇÏ¼Å¾ß ÇÕ´Ï´Ù!");
			fr2.passwd1.focus();
			return false;
		}
		if (fr2.passwd.value != fr2.passwd1.value) {
			window.alert("ºñ¹Ð¹øÈ£°¡ ¼­·Î ÀÏÄ¡ÇÏÁö ¾Ê½À´Ï´Ù.\n\nÁ¤È®ÇÏ°Ô ÀÔ·ÂÇØ ÁÖ¼¼¿ä!");
			fr2.passwd.value = "";
			fr2.passwd1.value = "";
			fr2.passwd.focus();
			return false;
		}
		birth = document.getElementsByName('birth[]')
		for(i=0; i<birth.length; i++){
			if(!birth[i].value){
				alert("»ý³â¿ùÀÏÀ» ÀÔ·ÂÇØÁÖ¼¼¿ä.");
				birth[i].focus();
				return false;
			}
		}
		if(fr2.zip1.value=="") {
			window.alert("¿ìÆí¹øÈ£ ¾ÕÀÚ¸®¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä!");
			fr2.zip1.focus();
			return false;
		}
		if(fr2.zip2.value=="") {
			window.alert("¿ìÆí¹øÈ£ µÞÀÚ¸®¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä!");
			fr2.zip2.focus();
			return false;
		}
		if(fr2.addr1.value==""){
			window.alert("ÁÖ¼Ò¸¦ ÀÔ·ÂÇØÁÖ¼¼¿ä.");
			fr2.addr1.focus();
			return false;
		}
		if(fr2.addr2.value==""){
			window.alert("»ó¼¼ÁÖ¼Ò¸¦ ÀÔ·ÂÇØÁÖ¼¼¿ä.");
			fr2.addr2.focus();
			return false;
		}
		if(!fr2.email.value){
			alert("ÀÌ¸ÞÀÏÁÖ¼Ò¸¦ ÀÔ·ÂÇØÁÖ¼¼¿ä.");
			fr2.email.focus();
			return false;
		}
		tel = document.getElementsByName('tel[]')
		for(i=0; i<tel.length; i++){
			if(!tel[i].value){
				alert("ÀÏ¹ÝÀüÈ­¸¦ ÀÔ·ÂÇØÁÖ¼¼¿ä.");
				tel[i].focus();
				return false;
			}
		}

		window.open("mem_complete.php", "Reg_comp", "width=400, height=190");
		return false;
	}

	//È¸¿øÁ¤º¸¼öÁ¤ ÆûÃ¼Å©
	function RegChk_modi(){
		var fr2 = document.member_frm;
		if(fr2.eng_name.value==""){
			alert("¿µ¹®¸íÀ» ÀÔ·ÂÇØ ÁÖ¼¼¿ä.");
			fr2.eng_name.focus();
			return false;
		}

		if(fr2.country.value==""){
			alert("±¹ÀûÀ» ¼±ÅÃÇØ ÁÖ¼¼¿ä.");
			fr2.country.focus();
			return;
		}

		if(fr2.passwd.value=="") {
			window.alert("ºñ¹Ð¹øÈ£¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä!");
			fr2.passwd.focus();
			return false;
		}
		if(fr2.passwd.value.length < 4 || fr2.passwd.value.length > 15) {
			window.alert("ºñ¹Ð¹øÈ£´Â 4ÀÚ ÀÌ»ó 15ÀÚ ÀÌÇÏÀÇ ¼ýÀÚ/¿µ¹® ¶Ç´Â ¼ýÀÚ¿Í ¿µ¹® Á¶ÇÕÀÇ ¹®ÀÚ¿­ÀÌ¾î¾ß ÇÕ´Ï´Ù.");
			fr2.passwd.focus();
			return false;
		}
		if(fr2.passwd1.value=="") {
			window.alert("ºñ¹Ð¹øÈ£ È®ÀÎÀ» À§ÇØ ºñ¹Ð¹øÈ£¸¦ ´Ù½Ã ÀÔ·ÂÇÏ¼Å¾ß ÇÕ´Ï´Ù!");
			fr2.passwd1.focus();
			return false;
		}
		if (fr2.passwd.value != fr2.passwd1.value) {
			window.alert("ºñ¹Ð¹øÈ£°¡ ¼­·Î ÀÏÄ¡ÇÏÁö ¾Ê½À´Ï´Ù.\n\nÁ¤È®ÇÏ°Ô ÀÔ·ÂÇØ ÁÖ¼¼¿ä!");
			fr2.passwd.value = "";
			fr2.passwd1.value = "";
			fr2.passwd.focus();
			return false;
		}
		birth = document.getElementsByName('birth[]')
		for(i=0; i<birth.length; i++){
			if(!birth[i].value){
				alert("»ý³â¿ùÀÏÀ» ÀÔ·ÂÇØÁÖ¼¼¿ä.");
				birth[i].focus();
				return false;
			}
		}
		if(fr2.zip1.value=="") {
			window.alert("¿ìÆí¹øÈ£ ¾ÕÀÚ¸®¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä!");
			fr2.zip1.focus();
			return false;
		}
		if(fr2.zip2.value=="") {
			window.alert("¿ìÆí¹øÈ£ µÞÀÚ¸®¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä!");
			fr2.zip2.focus();
			return false;
		}
		if(fr2.addr1.value==""){
			window.alert("ÁÖ¼Ò¸¦ ÀÔ·ÂÇØÁÖ¼¼¿ä.");
			fr2.addr1.focus();
			return false;
		}
		if(fr2.addr2.value==""){
			window.alert("»ó¼¼ÁÖ¼Ò¸¦ ÀÔ·ÂÇØÁÖ¼¼¿ä.");
			fr2.addr2.focus();
			return false;
		}
		if(!fr2.email.value){
			alert("ÀÌ¸ÞÀÏÁÖ¼Ò¸¦ ÀÔ·ÂÇØÁÖ¼¼¿ä.");
			fr2.email.focus();
			return false;
		}
		tel = document.getElementsByName('tel[]')
		for(i=0; i<tel.length; i++){
			if(!tel[i].value){
				alert("ÀÏ¹ÝÀüÈ­¸¦ ÀÔ·ÂÇØÁÖ¼¼¿ä.");
				tel[i].focus();
				return false;
			}
		}
		
	}
