/**
 * ÇÔ ¼ö ¸í : Login()
 * ±â    ´É : ·Î±×ÀÎ
 * ÆÄ¶ó¹ÌÅÍ : frm -> Æû°´Ã¼
 * ÀÛ ¼º ÀÏ : 2007.04.04, ÀÌÁö¹Ìµð¾î, Á¤¿ø±¤
 *
 */
function Login(frm, isnew) {
	var script = location.pathname.substr(location.pathname.lastIndexOf("/") + 1, location.pathname.length);

	if (!frm.Id.value || frm.Id.value.match(/[^a-z0-9]/g) || frm.Id.legnth < 4 || frm.Id.length > 12) {
		window.alert("¾ÆÀÌµð¸¦ ¿µ(¼Ò)¹®+¼ýÀÚ·Î 4ÀÚ ÀÌ»ó 12ÀÚ ÀÌÇÏ·Î ÀÔ·ÂÇÏ¼¼¿ä");
		frm.Id.value = "";
		frm.Id.focus();
		return false;
	} else if (!frm.Pass.value || frm.Pass.legnth < 4 || frm.Pass.length > 12) {
		window.alert("ÆÐ½º¿öµå¸¦ 4ÀÚ ÀÌ»ó 12ÀÚ ÀÌÇÏ·Î ÀÔ·ÂÇÏ¼¼¿ä");
		frm.Pass.value = "";
		frm.Pass.focus();
		return false;
	} else {
		if (isnew == true) {
			return true;
		} else {
			frm.RtnUrl.value = script == "member.php" ? _TOPDIR + "/" : location.pathname + location.search;
			return true;
		}
	}
}

/**
 * ÇÔ ¼ö ¸í : Logout()
 * ±â    ´É : ·Î±×¾Æ¿ô
 * ÀÛ ¼º ÀÏ : 2007.04.04, ÀÌÁö¹Ìµð¾î, Á¤¿ø±¤
 *
 */
function Logout() {
	var script = location.pathname.substr(location.pathname.lastIndexOf("/") + 1, location.pathname.length);

	if (confirm("·Î±×¾Æ¿ôÇÏ½Ã°Ú½À´Ï±î?") == true) {
		location.replace(_TOPDIR + "/5b2f/src/member.php?m=logout&r=" + ((script == "member.php" || script == "mypage.php") ? _TOPDIR + "/" : escape(location.pathname + location.search)));
	} else {
		return;
	}
}

