// ÀÌ¸ÞÀÏ Ã¼Å©
function checkEmail(form) {  
	var email = form.email.value;
	var email_1 = "";
	var email_2 = "";
	var check_point = 0;


	if (email.indexOf("@") < 0 ) {
		alert("ÀüÀÚ¿ìÆíÁÖ¼Ò¿¡ @ °¡ ºüÁ®ÀÖ½À´Ï´Ù.");
		form.email.focus();
		return false;
	}
	if (email.indexOf(".") < 0 ) {
		alert("ÀüÀÚ¿ìÆíÁÖ¼Ò¿¡ . °¡ ºüÁ®ÀÖ½À´Ï´Ù.");
		form.email.focus();
		return false;
	}

	if (email.indexOf("|") >= 0 ) {
		alert("ÀüÀÚ¿ìÆíÁÖ¼Ò¿¡ | ´Â Æ÷ÇÔÇÒ¼ö ¾ø½À´Ï´Ù..");
		form.email.focus();
		return false;
	}
	if (email.indexOf(">") >= 0 ) {
		alert("ÀüÀÚ¿ìÆíÁÖ¼Ò¿¡ > ´Â Æ÷ÇÔÇÒ¼ö ¾ø½À´Ï´Ù..");
		form.email.focus();
		return false;
	}
	if (email.indexOf("<") >= 0 ) {
		alert("ÀüÀÚ¿ìÆíÁÖ¼Ò¿¡ < ´Â Æ÷ÇÔÇÒ¼ö ¾ø½À´Ï´Ù..");
		form.email.focus();
		return false;
	}
	if (email.indexOf(" ") >= 0 ) {
		alert("ÀüÀÚ¿ìÆíÁÖ¼Ò¿¡ °ø¹éÀÌ Æ÷ÇÔÇÒ¼ö ¾ø½À´Ï´Ù..");
		form.email.focus();
		return false;
	}

		  for (var j = 0 ; j < email.length; j++) {
			   if ( email.substring(j, j + 1) != "@"  && check_point == 0 ) {
					email_1 = email_1 + email.substring(j, j + 1)
			   } else if ( email.substring(j, j + 1) == "@" )  {
					check_point = check_point + 1;
			   } else {
					email_2 = email_2 + email.substring(j, j + 1);	
			   }
		  }

	if (email_1.length < 3 ) {
		alert("ÀüÀÚ¿ìÆíÁÖ¼Ò¿¡ @ ¾ÕÀÚ¸®´Â 3ÀÚ¸®ÀÌ»ó ÀÔ·ÂÇÏ¼Å¾ßÇÕ´Ï´Ù.");
		form.email.focus();
		return false;
	}
	if (email_1.length < 3 ) {
		alert("ÀüÀÚ¿ìÆíÁÖ¼Ò¿¡ @ ¾ÕÀÚ¸®´Â 3ÀÚ¸®ÀÌ»ó ÀÔ·ÂÇÏ¼Å¾ßÇÕ´Ï´Ù.");
		form.email.focus();
		return false;
	}
	if (email_2.length < 2 ) {
		alert("ÀüÀÚ¿ìÆíÁÖ¼Ò¿¡ @ µÞÀÚ¸®´Â 2ÀÚ¸®ÀÌ»ó ÀÔ·ÂÇÏ¼Å¾ßÇÕ´Ï´Ù.");
		form.email.focus();
		return false;
	}

	if (check_point > 1 ) {
		alert("ÀüÀÚ¿ìÆíÁÖ¼Ò¿¡ @ ´Â 1¹øÀÌ»ó µé¾î°¥¼ö ¾ø½À´Ï´Ù.");
		form.email.focus();
		return false;
	}

	if (email_2.indexOf("(") >= 0 ) {
		alert("ÀüÀÚ¿ìÆíÁÖ¼Ò¿¡ ( ´Â Æ÷ÇÔÇÒ¼ö ¾ø½À´Ï´Ù..");
		form.email.focus();
		return false;
	}
	if (email_2.indexOf("(") >= 0 ) {
		alert("ÀüÀÚ¿ìÆíÁÖ¼Ò¿¡ ( ´Â Æ÷ÇÔÇÒ¼ö ¾ø½À´Ï´Ù..");
		form.email.focus();
		return false;
	}
	if (email_2.indexOf(")") >= 0 ) {
		alert("ÀüÀÚ¿ìÆíÁÖ¼Ò¿¡ ) ´Â Æ÷ÇÔÇÒ¼ö ¾ø½À´Ï´Ù..");
		form.email.focus();
		return false;
	}
	if (email_2.indexOf(",") >= 0 ) {
		alert("ÀüÀÚ¿ìÆíÁÖ¼Ò¿¡ , ´Â Æ÷ÇÔÇÒ¼ö ¾ø½À´Ï´Ù..");
		form.email.focus();
		return false;
	}
	if (email_2.indexOf(";") >= 0 ) {
		alert("ÀüÀÚ¿ìÆíÁÖ¼Ò¿¡ ; ´Â Æ÷ÇÔÇÒ¼ö ¾ø½À´Ï´Ù..");
		form.email.focus();
		return false;
	}
	if (email_2.indexOf(":") >= 0 ) {
		alert("ÀüÀÚ¿ìÆíÁÖ¼Ò¿¡ : ´Â Æ÷ÇÔÇÒ¼ö ¾ø½À´Ï´Ù..");
		form.email.focus();
		return false;
	}
	if (email_2.indexOf("/") >= 0 ) {
		alert("ÀüÀÚ¿ìÆíÁÖ¼Ò¿¡ / ´Â Æ÷ÇÔÇÒ¼ö ¾ø½À´Ï´Ù..");
		form.email.focus();
		return false;
	}
	if (email_2.indexOf("[") >= 0 ) {
		alert("ÀüÀÚ¿ìÆíÁÖ¼Ò¿¡ [ ´Â Æ÷ÇÔÇÒ¼ö ¾ø½À´Ï´Ù..");
		form.email.focus();
		return false;
	}
	if (email_2.indexOf("]") >= 0 ) {
		alert("ÀüÀÚ¿ìÆíÁÖ¼Ò¿¡ ] ´Â Æ÷ÇÔÇÒ¼ö ¾ø½À´Ï´Ù..");
		form.email.focus();
		return false;
	}
	if (email_2.indexOf("{") >= 0 ) {
		alert("ÀüÀÚ¿ìÆíÁÖ¼Ò¿¡ { ´Â Æ÷ÇÔÇÒ¼ö ¾ø½À´Ï´Ù..");
		form.email.focus();
		return false;
	}
	if (email_2.indexOf("}") >= 0 ) {
		alert("ÀüÀÚ¿ìÆíÁÖ¼Ò¿¡ } ´Â Æ÷ÇÔÇÒ¼ö ¾ø½À´Ï´Ù..");
		form.email.focus();
		return false;
	}
	if (email_2.indexOf(" ") >= 0 ) {
		alert("ÀüÀÚ¿ìÆíÁÖ¼Ò¿¡ ½ºÆäÀÌ½º´Â Æ÷ÇÔÇÒ¼ö ¾ø½À´Ï´Ù..");
		form.email.focus();
		return false;
	}
	return true;
}	

