<!--
function check_keycode(e) {
	//alert(e.keyCode);
	if (e.type == "keypress") var whichCode = e.keyCode;
//    alert(whichCode);
    if (whichCode == 13)
            SubmitFrm();
}

function SubmitFrm()
{
	var f	= document.Nafrm;
	var uid 	= f.ID.value;
	var pw 		= f.password.value;
	

	if (uid.length < 3  || uid.length > 14 ) {
		alert("»ç¿ëÀÚID´Â 3ÀÚ ¿¡¼­ 14ÀÚÀÇ ±æÀÌÀÌ¾î¾ß ÇÕ´Ï´Ù");
		f.ID.focus();
		return;
	}
	
	if (pw.length < 4  || pw.length > 12){
		alert("»ç¿ëÀÚ password´Â 4ÀÚ ¿¡¼­ 12ÀÚÀÇ ±æÀÌÀÌ¾î¾ß ÇÕ´Ï´Ù");
		f.password.focus();
		return;
	}
	
	f.submit();
	//alert("test11");
	return;
}

//È¸¿ø°¡ÀÔ 
function new_mem(url){ 
	window.open(url,"new_member","width=824,height=600,scrollbars=yes,resizable=yes");
}
//-->