/******************************************************************************
* ÆÄ ÀÏ ¸í: member_form.js
* ÀÛ¾÷³»¿ë: È¸¿ø°¡ÀÔÆû ½ºÅ©¸³Æ®ÇÔ¼ö
* ÀÛ ¼º ÀÚ: (ÁÖ)ÀÎÅÍ³Ý½ºÆ®¸®Æ®
 ******************************************************************************/

//-----------------------------------------------------------------------------
// ¾ÆÀÌµð Áßº¹ Ã¼Å©
//-----------------------------------------------------------------------------
function f_id_check()
{
    rtn_cd = true ;
    M_ID_chk = document.MEMBER_FORM.M_ID.value ;

    if( 4 > M_ID_chk.length )
    {
        alert("¾ÆÀÌµð´Â ÃÖ¼Ò 4ÀÚÀÌ»ó ÀÔ·ÂÇÏ¼Å¾ß ÇÕ´Ï´Ù.");
        document.MEMBER_FORM.M_ID.focus();
        rtn_cd = false;
    }

    if(rtn_cd && "" != M_ID_chk)
    {
        window.open('id_check.php?pId='+M_ID_chk,'ss','width=253,height=153,scrollbars=no,toolbar=no,status=no,location=no,top=200,left=200');
    }
}
//-----------------------------------------------------------------------------
// ´Ð³×ÀÓ Áßº¹ Ã¼Å©
//-----------------------------------------------------------------------------
function f_nic_check()
{
    rtn_cd = true ;
    M_NICKNAME_chk = document.MEMBER_FORM.M_NICKNAME.value ;

    if( 2 > M_NICKNAME_chk.length )
    {
        alert("´Ð³×ÀÓÀº ÃÖ¼Ò 2ÀÚÀÌ»ó ÀÔ·ÂÇÏ¼Å¾ß ÇÕ´Ï´Ù.");
        document.MEMBER_FORM.M_NICKNAME.focus();
        rtn_cd = false;
    }

    if(rtn_cd && "" != M_NICKNAME_chk)
    {
        window.open('nic_check.php?pId='+M_NICKNAME_chk,'ss','width=253,height=153,scrollbars=no,toolbar=no,status=no,location=no,top=200,left=200');
    }
}

//-----------------------------------------------------------------------------
// ÀúÀå Ã³¸®
//-----------------------------------------------------------------------------
function f_BigSave()
{
    var rtn_cd = true;
    document.MEMBER_FORM.BIGCARD_WRITE_KBN.value = "Y";
    f_save();
}
//-----------------------------------------------------------------------------
// ÀúÀå Ã³¸®
//-----------------------------------------------------------------------------
function f_save()
{
    var rtn_cd = true;
    var ju     = document.MEMBER_FORM.M_JUMIN1.value+''+document.MEMBER_FORM.M_JUMIN2.value ;
    // ¾ÆÀÌµð
    if ( "" == document.MEMBER_FORM.M_ID.value )
    {
        alert("¾ÆÀÌµðÀ» ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À");
        document.MEMBER_FORM.M_ID.focus();
        rtn_cd = false;
    }
    else if ( 4 > document.MEMBER_FORM.M_ID.value.length ) 
    {
        alert("¾ÆÀÌµð´Â ÃÖ¼Ò 4ÀÚÀÌ»ó ÀÔ·ÂÇÏ¼Å¾ß ÇÕ´Ï´Ù.");
        document.MEMBER_FORM.M_ID.focus();
        rtn_cd = false;
    }
    // ÀÌ¸§
    else if ( "" == document.MEMBER_FORM.M_NAME.value ) 
    {
        alert("¼º¸íÀ» ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À");
        document.MEMBER_FORM.M_NAME.focus();
        rtn_cd = false;
    }
    // ´Ð³×ÀÓ
    //else if ( "" == document.MEMBER_FORM.M_NICKNAME.value ) 
    //{
    //    alert("´Ð³×ÀÓ¸¦ ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À");
    //    document.MEMBER_FORM.M_NICKNAME.focus();
    //    rtn_cd = false;
    //}
    // ºñ¹Ð¹øÈ£
    else if ( "" == document.MEMBER_FORM.M_PASS.value && 
              "" == document.MEMBER_FORM.UPDATE_KBN.value )
    {
        alert("ºñ¹Ð¹øÈ£¸¦ ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À");
        document.MEMBER_FORM.M_PASS.focus(); 
        rtn_cd = false;
    }
    // ºñ¹Ð¹øÈ£ °Ë»ç
    else if ((document.MEMBER_FORM.M_PASS.value != document.MEMBER_FORM.M_PASS_CHK.value) && 
             "" == document.MEMBER_FORM.UPDATE_KBN.value) 
    {
        alert("ºñ¹Ð¹øÈ£°¡ ÀÏÄ¡ÇÏÁö ¾Ê½À´Ï´Ù");
        document.MEMBER_FORM.M_PASS.value = "";
        document.MEMBER_FORM.M_PASS_CHK.value = "";
        document.MEMBER_FORM.M_PASS.focus(); 
        rtn_cd = false;
    }
    // ÁÖ¹Î¹øÈ£
    else if( 6 != document.MEMBER_FORM.M_JUMIN1.value.length || 
             7 != document.MEMBER_FORM.M_JUMIN2.value.length )
    {
        alert("ÁÖ¹Îµî·Ï¹øÈ£¸¦ Á¤È®È÷ ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿ä.");
        document.MEMBER_FORM.M_JUMIN1.value = '';
        document.MEMBER_FORM.M_JUMIN2.value = '';
        document.MEMBER_FORM.M_JUMIN1.focus();
        rtn_cd = false;
    }
    // ÁÖ¹Î¹øÈ£
    else if( !gf_ChkJumin(ju))
    {
        document.MEMBER_FORM.M_JUMIN1.value = '';
        document.MEMBER_FORM.M_JUMIN2.value = '';
        document.MEMBER_FORM.M_JUMIN1.focus();
        rtn_cd = false;
    }
    // ÀÌ¸ÞÀÏ
    else if( !gf_ChkMail(document.MEMBER_FORM.M_EMAIL) )
    {
		document.MEMBER_FORM.M_EMAIL.focus();
        rtn_cd = false;
    }
    // »ý³â¿ùÀÏ
    else if( "" == document.MEMBER_FORM.M_BIRTH1.value || "" == document.MEMBER_FORM.M_BIRTH2.value || "" == document.MEMBER_FORM.M_BIRTH3.value )
    {
        alert("»ý³â¿ùÀÏÀ» ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿ä.");
		document.MEMBER_FORM.M_BIRTH1.focus();
        rtn_cd = false;
    }
    else if( "" == document.MEMBER_FORM.M_EMAIL.value )
    {
        alert("E-mailÀ» ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿ä.");
		document.MEMBER_FORM.M_EMAIL.focus();
        rtn_cd = false;
    }
    // ¿ìÆí¹øÈ£
    else if ( "" == document.MEMBER_FORM.M_POST1.value )
    {
        alert("¿ìÆí¹øÈ£Ã£±â¸¦ ÀÌ¿ëÇØ ÁÖ½Ê½Ã¿À");
        rtn_cd = false;
    }
    else if( "" == document.MEMBER_FORM.M_HTEL1.value || "" == document.MEMBER_FORM.M_HTEL2.value || "" == document.MEMBER_FORM.M_HTEL3.value )
    {
        alert("ÇÚµåÆù ¹øÈ£¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä");
		document.MEMBER_FORM.M_HTEL1.focus();
        rtn_cd = false;
    }
	else if( "" == document.MEMBER_FORM.M_TEL1.value || "" == document.MEMBER_FORM.M_TEL2.value || "" == document.MEMBER_FORM.M_TEL3.value )
    {
        alert("ÀüÈ­(ÀÏ¹Ý) ¹øÈ£¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä");
		document.MEMBER_FORM.M_TEL1.focus();
        rtn_cd = false;
    }
    if (true == rtn_cd)
    { 
        if ( "" == document.MEMBER_FORM.UPDATE_KBN.value )
        {
            document.MEMBER_FORM.UPDATE_KBN.value = "save";
        }
        document.MEMBER_FORM.submit();
    }

	return rtn_cd;
}

//-----------------------------------------------------------------------------
// ÁÖ¹Îµî·Ï¹øÈ£¸¦ ÀÔ·ÂÇßÀ»½Ã¿¡ ÇØ´ç°ªÀ» ÃßÃâÇÏ¿© »ý³â¿ùÀÏ, ¼ºº° Á¤º¸¸¦ ÀÚµ¿ÀÔ·Â
//-----------------------------------------------------------------------------
function f_jumin_check()
{
    var ju1 = document.MEMBER_FORM.M_JUMIN1.value;
    var ju2 = document.MEMBER_FORM.M_JUMIN2.value;
    var now = new Date();

    if(!gf_ChkJumin(ju1+""+ju2))
    {
        document.MEMBER_FORM.M_JUMIN1.value = '';
        document.MEMBER_FORM.M_JUMIN2.value = '';
        document.MEMBER_FORM.M_JUMIN1.focus();
        return false;
    }
    else if (ju1 && ju2)
    {
        var year = ju1.substring(0,2);
        document.MEMBER_FORM.M_BIRTH2.value = ju1.substring(2,4);
        document.MEMBER_FORM.M_BIRTH3.value = ju1.substring(4,6);
        var sex  = ju2.charAt(0);
        if (1 == sex || 2 == sex || 5 == sex) { 
			document.MEMBER_FORM.M_BIRTH1.value = "19" + year; 
		}
        else                      { 
			document.MEMBER_FORM.M_BIRTH1.value = "20" + year; 
		}
        if (1 == sex || 3 == sex || 5 == sex) { document.MEMBER_FORM.M_SEX.value = "M"; }
        else                      { document.MEMBER_FORM.M_SEX.value = "W"; }
        //³ÝÄ¿ÇÃÀÇ ³ªÀÌ ÁöÁ¤
        bir_year = document.MEMBER_FORM.M_BIRTH1.value;
        cur_year = now.getYear();
        document.MEMBER_FORM.M_AGE.value = cur_year - bir_year + 1;
    }
}
//-----------------------------------------------------------------------------
// µ¿ÀÇ
//-----------------------------------------------------------------------------
function f_agree()
{
    location.href='member_form.php';
}
//-----------------------------------------------------------------------------
// µ¿ÀÇ¾ÈÇÔ
//-----------------------------------------------------------------------------
function f_noagree()
{
    history.back(-1);
}
//-----------------------------------------------------------------------------
// ³ÝÄ¿ÇÃµî·ÏÁ¤º¸Ç¥½Ã¿©ºÎ
//-----------------------------------------------------------------------------
function f_NetKbn(pKbn)
{
    if ( pKbn) { document.all.SPAN_NET.style.display = "";     }
    else       { document.all.SPAN_NET.style.display = "none"; }
}
//-----------------------------------------------------------------------------
// ÃÑ¹èÁ¡ º¯°æ
//-----------------------------------------------------------------------------
function f_Value()
{
    var age_cnt      = document.MEMBER_FORM.BJ_AGE_CNT.value;
    var miss_cnt     = document.MEMBER_FORM.BJ_MISS_CNT.value;
    var job_cnt      = document.MEMBER_FORM.BJ_JOB_CNT.value;
    var school_cnt   = document.MEMBER_FORM.BJ_SCHOOL_CNT.value;
    var cult_cnt     = document.MEMBER_FORM.BJ_CULT_CNT.value;
    var char_cnt     = document.MEMBER_FORM.BJ_CHAR_CNT.value;
    var body_cnt     = document.MEMBER_FORM.BJ_BODY_CNT.value;
    var rh_cnt       = document.MEMBER_FORM.BJ_RH_CNT.value;
    var smoke_cnt    = document.MEMBER_FORM.BJ_SMOKE_CNT.value;
    var height_cnt   = document.MEMBER_FORM.BJ_HEIGHT_CNT.value;
    var weight_cnt   = document.MEMBER_FORM.BJ_WEIGHT_CNT.value;
    var interest_cnt = document.MEMBER_FORM.BJ_INTEREST_CNT.value;
    var special_cnt  = document.MEMBER_FORM.BJ_SPECIAL_CNT.value;
    if ("" == age_cnt     ) { age_cnt      = 0; }
    if ("" == miss_cnt    ) { miss_cnt     = 0; }
    if ("" == job_cnt     ) { job_cnt      = 0; }
    if ("" == school_cnt  ) { school_cnt   = 0; }
    if ("" == cult_cnt    ) { cult_cnt     = 0; }
    if ("" == char_cnt    ) { char_cnt     = 0; }
    if ("" == body_cnt    ) { body_cnt     = 0; }
    if ("" == rh_cnt      ) { rh_cnt       = 0; }
    if ("" == smoke_cnt   ) { smoke_cnt    = 0; }
    if ("" == height_cnt  ) { height_cnt   = 0; }
    if ("" == weight_cnt  ) { weight_cnt   = 0; }
    if ("" == interest_cnt) { interest_cnt = 0; }
    if ("" == special_cnt ) { special_cnt  = 0; }

    tot = parseInt(age_cnt) + parseInt(miss_cnt) + parseInt(job_cnt) + parseInt(school_cnt) + parseInt(cult_cnt) + parseInt(char_cnt) + parseInt(special_cnt) + parseInt(interest_cnt) + parseInt(body_cnt) + parseInt(rh_cnt) + parseInt(smoke_cnt) + parseInt(height_cnt) + parseInt(weight_cnt);
    document.MEMBER_FORM.BJ_CNT_TOT.value = '';
    document.MEMBER_FORM.BJ_CNT_TOT.value = tot;
}