<!--
function moveFocus() {document.frmBio.birth_year.focus();}
function CheckValid(String, SpaceCheck) {
	var retvalue = false;
	for (var i=0; i<String.length; i++) {
		if (SpaceCheck == true) {if (String.charAt(i) == ' ') {retvalue = true;break;}}
		else {if (String.charAt(i) != ' ') {retvalue = true;break;}}
	}
	return retvalue;
} 
function IsEmpty(String) {return !CheckValid(String, false);}
function IsSpace(String) {return CheckValid(String, true);}
function ValidString(String) {
	var RetValue = true;
	var Count;
	var PermitChar = "0123456789";
	for (var i = 0; i < String.length; i++) {
		Count = 0;
		for (var j = 0; j < PermitChar.length; j++) {if(String.charAt(i) == PermitChar.charAt(j)) {Count++;break;}}
		if (Count == 0) {RetValue = false;break;}
	}
	return RetValue;
}
function check1(){var str = document.frmBio.birth_year.value.length;	if(str == 4) document.frmBio.birth_month.focus();}
function check2(){var str = document.frmBio.birth_month.value.length;if(str == 2) document.frmBio.birth_day.focus();}
function check3(){var str = document.frmBio.birth_day.value.length;if(str == 2) document.frmBio.see_year.focus();}
function check4(){var str = document.frmBio.see_year.value.length;if(str == 4)	document.frmBio.see_month.focus();}
function check5(){var str = document.frmBio.see_month.value.length;if(str == 2) document.frmBio.see_day.focus();}
function sendBio() {
	if (IsSpace(document.frmBio.birth_year.value)) {
		alert('ÅÂ¾î³­ ³âµµÀÇ °ø¹é¹®ÀÚ¸¦ Á¦°ÅÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.birth_year.select();
		document.frmBio.birth_year.focus();
		return false;
	}
	if (IsSpace(document.frmBio.see_year.value)) {
		alert('º¸°í½ÍÀº ³âµµÀÇ °ø¹é¹®ÀÚ¸¦ Á¦°ÅÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.see_year.select();
		document.frmBio.see_year.focus();
		return false;
	}
	if (IsEmpty(document.frmBio.birth_year.value)) {
		alert('ÅÂ¾î³­ ³âµµ¸¦ ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.birth_year.value = '';
		document.frmBio.birth_year.focus();
		return false;
	}
	if (IsEmpty(document.frmBio.birth_month.value)) {
		alert('ÅÂ¾î³­ ´ÞÀ» ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.birth_month.value = '';
		document.frmBio.birth_month.focus();
		return false;
	}
	if (IsEmpty(document.frmBio.birth_day.value)) {
		alert('ÅÂ¾î³­ ³¯Â¥¸¦ ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.birth_day.value = '';
		document.frmBio.birth_day.focus();
		return false;
	}
	if (IsEmpty(document.frmBio.see_year.value)) {
		alert('º¸°í½ÍÀº ³âµµ¸¦ ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.see_year.value = '';
		document.frmBio.see_year.focus();
		return false;
	}
	if (IsEmpty(document.frmBio.see_month.value)) {
		alert('º¸°í½ÍÀº ´ÞÀ» ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.see_month.value = '';
		document.frmBio.see_month.focus();
		return false;
	}
	if (IsEmpty(document.frmBio.see_day.value)) {
		alert('º¸°í½ÍÀº ³¯Â¥¸¦ ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.see_day.value = '';
		document.frmBio.see_day.focus();
		return false;
	}
	var a,b,c,d
//	a = parseInt(document.frmBio.birth_month.value.substring(0,1),33);
//	b = parseInt(document.frmBio.birth_month.value.substring(1,2),10);

	a = parseInt(document.frmBio.birth_month.value.substring(0,3),10);
	c = parseInt(document.frmBio.birth_day.value.substring(0,1),10);
	d = parseInt(document.frmBio.birth_day.value.substring(1,2),10);

	

//	if (((a*10+b) > (12)) || ((a*10+b) < (1))) {
//		alert('ÅÂ¾î³­ ´ÞÀ» È®ÀÎÇÏ¿© ÁÖ½Ê½Ã¿À.\n\n             ( 1 ~ 12 »çÀÌÀÇ ¼ýÀÚÀÌ¾î¾ß ÇÕ´Ï´Ù. )');
//		document.frmBio.birth_month.select();
//		document.frmBio.birth_month.focus();
//		return false;
//	}
	
	if ((a >12) || (a <1))  {
		alert('ÅÂ¾î³­ ´ÞÀ» È®ÀÎÇÏ¿© ÁÖ½Ê½Ã¿À.\n\n             ( 1 ~ 12 »çÀÌÀÇ ¼ýÀÚÀÌ¾î¾ß ÇÕ´Ï´Ù. )');
		document.frmBio.birth_month.select();
		document.frmBio.birth_month.focus();
		return false;
	}
//	if ((a*10+b)  > 12 || (a*10+b)  == 0 ) {
//		alert('ÅÂ¾î³­ ´ÞÀ» È®ÀÎÇÏ¿© ÁÖ½Ê½Ã¿À.\n\n             ( 1 ~ 12 »çÀÌÀÇ ¼ýÀÚÀÌ¾î¾ß ÇÕ´Ï´Ù. )');
//		document.frmBio.birth_month.select();
//		document.frmBio.birth_month.focus();
//		return false;
//	}

	
	
	if ( a == 0 && b == 2 ) {
		if ((c*10+d) > 29 || (c*10+d)   < 1 ) {
			alert('ÅÂ¾î³­ ³¯Â¥¸¦ È®ÀÎÇÏ¿© ÁÖ½Ê½Ã¿À.\n\n             ( 1 ~ 29 »çÀÌÀÇ ¼ýÀÚÀÌ¾î¾ß ÇÕ´Ï´Ù. )');
			document.frmBio.birth_day.select();
			document.frmBio.birth_day.focus();
			return false;
		}
	}
	if ( b == 1 || b == 3 || b == 5 || b == 7 || b == 8 || b == 10 || (a*10+b) == 12  ) {
		if ((c*10+d) > 31 || (c*10+d)   < 1 ) {
			alert('ÅÂ¾î³­ ³¯Â¥¸¦ È®ÀÎÇÏ¿© ÁÖ½Ê½Ã¿À.\n\n             ( 1 ~ 31 »çÀÌÀÇ ¼ýÀÚÀÌ¾î¾ß ÇÕ´Ï´Ù. )');
			document.frmBio.birth_day.select();
			document.frmBio.birth_day.focus();
			return false;
		}
	}
	if ( b == 4 || b == 6 || b == 9 || (a*10+b) == 11  ) {
		if ((c*10+d) > 30 || (c*10+d)   < 1 ) {
			alert('ÅÂ¾î³­ ³¯Â¥¸¦ È®ÀÎÇÏ¿© ÁÖ½Ê½Ã¿À.\n\n             ( 1 ~ 30 »çÀÌÀÇ ¼ýÀÚÀÌ¾î¾ß ÇÕ´Ï´Ù. )');
			document.frmBio.birth_day.select();
			document.frmBio.birth_day.focus();
			return false;
		}
	}
	var e,f,g,h
	e = parseInt(document.frmBio.see_month.value.substring(0,1),10);
	f = parseInt(document.frmBio.see_month.value.substring(1,2),10);
	g = parseInt(document.frmBio.see_day.value.substring(0,1),10);
	h = parseInt(document.frmBio.see_day.value.substring(1,2),10);
	if ((e*10+f)  > 12 || (e*10+f)  == 0 ) {
		alert('º¸°í½ÍÀº ´ÞÀ» È®ÀÎÇÏ¿© ÁÖ½Ê½Ã¿À.\n\n             ( 1 ~ 12 »çÀÌÀÇ ¼ýÀÚÀÌ¾î¾ß ÇÕ´Ï´Ù. )');
		document.frmBio.see_month.select();
		document.frmBio.see_month.focus();
		return false;
	}
	if ( e == 0 && f == 2 ) {
		if ((g*10+h) > 29 || (g*10+h)   < 1 ) {
			alert('º¸°í½ÍÀº ³¯Â¥¸¦ È®ÀÎÇÏ¿© ÁÖ½Ê½Ã¿À.\n\n             ( 1 ~ 29 »çÀÌÀÇ ¼ýÀÚÀÌ¾î¾ß ÇÕ´Ï´Ù. )');
			document.frmBio.see_day.select();
			document.frmBio.see_day.focus();
			return false;
		}
	}
	if ( f == 1 || f == 3 || f == 5 || f == 7 || f == 8 || f == 10 || (e*10+f) == 12  ) {
		if ((g*10+h) > 31 || (g*10+h)   < 1 ) {
			alert('º¸°í½ÍÀº ³¯Â¥¸¦ È®ÀÎÇÏ¿© ÁÖ½Ê½Ã¿À.\n\n             ( 1 ~ 31 »çÀÌÀÇ ¼ýÀÚÀÌ¾î¾ß ÇÕ´Ï´Ù. )');
			document.frmBio.see_day.select();
			document.frmBio.see_day.focus();
			return false;
		}
	}
	if ( f == 4 || f == 6 || f == 9 || (e*10+f) == 11  ) {
		if ((g*10+h) > 30 || (g*10+h)   < 1 ) {
			alert('º¸°í½ÍÀº ³¯Â¥¸¦ È®ÀÎÇÏ¿© ÁÖ½Ê½Ã¿À.\n\n             ( 1 ~ 30 »çÀÌÀÇ ¼ýÀÚÀÌ¾î¾ß ÇÕ´Ï´Ù. )');
			document.frmBio.see_day.select();
			document.frmBio.see_day.focus();
			return false;
		}
	}
	if (!ValidString(document.frmBio.birth_year.value)) {
		alert('ÅÂ¾î³­ ³âµµ¸¦ ÀÔ·ÂÇÒ ¶§ ¼ýÀÚ¸¸À» ÀÌ¿ëÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.birth_year.value = '';
		document.frmBio.birth_year.focus();
		return false;
	}
	if (!ValidString(document.frmBio.birth_month.value)) {
		alert('ÅÂ¾î³­ ´ÞÀ» ÀÔ·ÂÇÒ ¶§ ¼ýÀÚ¸¸À» ÀÌ¿ëÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.birth_month.value = '';
		document.frmBio.birth_month.focus();
		return false;
	}
	if (!ValidString(document.frmBio.birth_day.value)) {
		alert('ÅÂ¾î³­ ³¯Â¥¸¦ ÀÔ·ÂÇÒ ¶§ ¼ýÀÚ¸¸À» ÀÌ¿ëÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.birth_day.value = '';
		document.frmBio.birth_day.focus();
		return false;
	}
	if (!ValidString(document.frmBio.see_year.value)) {
		alert('º¸°í½ÍÀº ³âµµ¸¦ ÀÔ·ÂÇÒ ¶§ ¼ýÀÚ¸¸À» ÀÌ¿ëÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.see_year.value = '';
		document.frmBio.see_year.focus();
		return false;
	}
	if (!ValidString(document.frmBio.see_month.value)) {
		alert('º¸°í½ÍÀº ´ÞÀ» ÀÔ·ÂÇÒ ¶§ ¼ýÀÚ¸¸À» ÀÌ¿ëÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.see_month.value = '';
		document.frmBio.see_month.focus();
		return false;
	}
	if (!ValidString(document.frmBio.see_day.value)) {
		alert('º¸°í½ÍÀº ³¯Â¥¸¦ ÀÔ·ÂÇÒ ¶§ ¼ýÀÚ¸¸À» ÀÌ¿ëÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.see_day.value = '';
		document.frmBio.see_day.focus();
		return false;
	}
	document.frmBio.submit();
}
// <!-- 0803 Ãß°¡ÇÏ´Â ºÎºÐ(begin) -->
function sendBio2() {
	if (IsSpace(document.frmBio.birth_year.value)) {
		alert('ÅÂ¾î³­ ³âµµÀÇ °ø¹é¹®ÀÚ¸¦ Á¦°ÅÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.birth_year.select();
		document.frmBio.birth_year.focus();
		return false;
	}
	if (IsSpace(document.frmBio.see_year.value)) {
		alert('º¸°í½ÍÀº ³âµµÀÇ °ø¹é¹®ÀÚ¸¦ Á¦°ÅÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.see_year.select();
		document.frmBio.see_year.focus();
		return false;
	}
	if (IsEmpty(document.frmBio.birth_year.value)) {
		alert('ÅÂ¾î³­ ³âµµ¸¦ ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.birth_year.value = '';
		document.frmBio.birth_year.focus();
		return false;
	}
	if (IsEmpty(document.frmBio.birth_month.value)) {
		alert('ÅÂ¾î³­ ´ÞÀ» ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.birth_month.value = '';
		document.frmBio.birth_month.focus();
		return false;
	}
	if (IsEmpty(document.frmBio.birth_day.value)) {
		alert('ÅÂ¾î³­ ³¯Â¥¸¦ ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.birth_day.value = '';
		document.frmBio.birth_day.focus();
		return false;
	}
	if (IsEmpty(document.frmBio.see_year.value)) {
		alert('º¸°í½ÍÀº ³âµµ¸¦ ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.see_year.value = '';
		document.frmBio.see_year.focus();
		return false;
	}
	if (IsEmpty(document.frmBio.see_month.value)) {
		alert('º¸°í½ÍÀº ´ÞÀ» ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.see_month.value = '';
		document.frmBio.see_month.focus();
		return false;
	}
	if (IsEmpty(document.frmBio.see_day.value)) {
		alert('º¸°í½ÍÀº ³¯Â¥¸¦ ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.see_day.value = '';
		document.frmBio.see_day.focus();
		return false;
	}
	var a,b,c,d
	a = parseInt(document.frmBio.birth_month.value.substring(0,1),10);
	b = parseInt(document.frmBio.birth_month.value.substring(1,2),10);
	c = parseInt(document.frmBio.birth_day.value.substring(0,1),10);
	d = parseInt(document.frmBio.birth_day.value.substring(1,2),10);
	if ((a*10+b)  > 12 || (a*10+b)  == 0 ) {
		alert('ÅÂ¾î³­ ´ÞÀ» È®ÀÎÇÏ¿© ÁÖ½Ê½Ã¿À.\n\n             ( 1 ~ 12 »çÀÌÀÇ ¼ýÀÚÀÌ¾î¾ß ÇÕ´Ï´Ù. )');
		document.frmBio.birth_month.select();
		document.frmBio.birth_month.focus();
		return false;
	}
	if ( a == 0 && b == 2 ) {
		if ((c*10+d) > 29 || (c*10+d)   < 1 ) {
			alert('ÅÂ¾î³­ ³¯Â¥¸¦ È®ÀÎÇÏ¿© ÁÖ½Ê½Ã¿À.\n\n             ( 1 ~ 29 »çÀÌÀÇ ¼ýÀÚÀÌ¾î¾ß ÇÕ´Ï´Ù. )');
			document.frmBio.birth_day.select();
			document.frmBio.birth_day.focus();
			return false;
		}
	}
	if ( b == 1 || b == 3 || b == 5 || b == 7 || b == 8 || b == 10 || (a*10+b) == 12  ) {
		if ((c*10+d) > 31 || (c*10+d)   < 1 ) {
			alert('ÅÂ¾î³­ ³¯Â¥¸¦ È®ÀÎÇÏ¿© ÁÖ½Ê½Ã¿À.\n\n             ( 1 ~ 31 »çÀÌÀÇ ¼ýÀÚÀÌ¾î¾ß ÇÕ´Ï´Ù. )');
			document.frmBio.birth_day.select();
			document.frmBio.birth_day.focus();
			return false;
		}
	}
	if ( b == 4 || b == 6 || b == 9 || (a*10+b) == 11  ) {
		if ((c*10+d) > 30 || (c*10+d)   < 1 ) {
			alert('ÅÂ¾î³­ ³¯Â¥¸¦ È®ÀÎÇÏ¿© ÁÖ½Ê½Ã¿À.\n\n             ( 1 ~ 30 »çÀÌÀÇ ¼ýÀÚÀÌ¾î¾ß ÇÕ´Ï´Ù. )');
			document.frmBio.birth_day.select();
			document.frmBio.birth_day.focus();
			return false;
		}
	}
	var e,f,g,h
	e = parseInt(document.frmBio.see_month.value.substring(0,1),10);
	f = parseInt(document.frmBio.see_month.value.substring(1,2),10);
	g = parseInt(document.frmBio.see_day.value.substring(0,1),10);
	h = parseInt(document.frmBio.see_day.value.substring(1,2),10);
	if ((e*10+f)  > 12 || (e*10+f)  == 0 ) {
		alert('º¸°í½ÍÀº ´ÞÀ» È®ÀÎÇÏ¿© ÁÖ½Ê½Ã¿À.\n\n             ( 1 ~ 12 »çÀÌÀÇ ¼ýÀÚÀÌ¾î¾ß ÇÕ´Ï´Ù. )');
		document.frmBio.see_month.select();
		document.frmBio.see_month.focus();
		return false;
	}
	if ( e == 0 && f == 2 ) {
		if ((g*10+h) > 29 || (g*10+h)   < 1 ) {
			alert('º¸°í½ÍÀº ³¯Â¥¸¦ È®ÀÎÇÏ¿© ÁÖ½Ê½Ã¿À.\n\n             ( 1 ~ 29 »çÀÌÀÇ ¼ýÀÚÀÌ¾î¾ß ÇÕ´Ï´Ù. )');
			document.frmBio.see_day.select();
			document.frmBio.see_day.focus();
			return false;
		}
	}
	if ( f == 1 || f == 3 || f == 5 || f == 7 || f == 8 || f == 10 || (e*10+f) == 12  ) {
		if ((g*10+h) > 31 || (g*10+h)   < 1 ) {
			alert('º¸°í½ÍÀº ³¯Â¥¸¦ È®ÀÎÇÏ¿© ÁÖ½Ê½Ã¿À.\n\n             ( 1 ~ 31 »çÀÌÀÇ ¼ýÀÚÀÌ¾î¾ß ÇÕ´Ï´Ù. )');
			document.frmBio.see_day.select();
			document.frmBio.see_day.focus();
			return false;
		}
	}
	if ( f == 4 || f == 6 || f == 9 || (e*10+f) == 11  ) {
		if ((g*10+h) > 30 || (g*10+h)   < 1 ) {
			alert('º¸°í½ÍÀº ³¯Â¥¸¦ È®ÀÎÇÏ¿© ÁÖ½Ê½Ã¿À.\n\n             ( 1 ~ 30 »çÀÌÀÇ ¼ýÀÚÀÌ¾î¾ß ÇÕ´Ï´Ù. )');
			document.frmBio.see_day.select();
			document.frmBio.see_day.focus();
			return false;
		}
	}
	if (!ValidString(document.frmBio.birth_year.value)) {
		alert('ÅÂ¾î³­ ³âµµ¸¦ ÀÔ·ÂÇÒ ¶§ ¼ýÀÚ¸¸À» ÀÌ¿ëÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.birth_year.value = '';
		document.frmBio.birth_year.focus();
		return false;
	}
	if (!ValidString(document.frmBio.birth_month.value)) {
		alert('ÅÂ¾î³­ ´ÞÀ» ÀÔ·ÂÇÒ ¶§ ¼ýÀÚ¸¸À» ÀÌ¿ëÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.birth_month.value = '';
		document.frmBio.birth_month.focus();
		return false;
	}
	if (!ValidString(document.frmBio.birth_day.value)) {
		alert('ÅÂ¾î³­ ³¯Â¥¸¦ ÀÔ·ÂÇÒ ¶§ ¼ýÀÚ¸¸À» ÀÌ¿ëÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.birth_day.value = '';
		document.frmBio.birth_day.focus();
		return false;
	}
	if (!ValidString(document.frmBio.see_year.value)) {
		alert('º¸°í½ÍÀº ³âµµ¸¦ ÀÔ·ÂÇÒ ¶§ ¼ýÀÚ¸¸À» ÀÌ¿ëÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.see_year.value = '';
		document.frmBio.see_year.focus();
		return false;
	}
	if (!ValidString(document.frmBio.see_month.value)) {
		alert('º¸°í½ÍÀº ´ÞÀ» ÀÔ·ÂÇÒ ¶§ ¼ýÀÚ¸¸À» ÀÌ¿ëÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.see_month.value = '';
		document.frmBio.see_month.focus();
		return false;
	}
	if (!ValidString(document.frmBio.see_day.value)) {
		alert('º¸°í½ÍÀº ³¯Â¥¸¦ ÀÔ·ÂÇÒ ¶§ ¼ýÀÚ¸¸À» ÀÌ¿ëÇØ ÁÖ½Ê½Ã¿À.');
		document.frmBio.see_day.value = '';
		document.frmBio.see_day.focus();
		return false;
	}
	document.frmBio2.birth_year.value=document.frmBio.birth_year.value;
	document.frmBio2.birth_month.value=document.frmBio.birth_month.value;
	document.frmBio2.birth_day.value=document.frmBio.birth_day.value;
	document.frmBio2.see_year.value=document.frmBio.see_year.value;
	document.frmBio2.see_month.value=document.frmBio.see_month.value;
	document.frmBio2.see_day.value=document.frmBio.see_day.value;
	document.frmBio2.p_find.value=document.frmBio.p_find.value;
	document.frmBio2.e_find.value=document.frmBio.e_find.value;
	document.frmBio2.m_find.value=document.frmBio.m_find.value;
	document.frmBio2.submit();
}
// <!-- 0803 Ãß°¡ÇÏ´Â ºÎºÐ(end) -->
// -->