/******************************************************************************
* ÆÄ ÀÏ ¸í: com_form.js
* ÀÛ¾÷³»¿ë: ±â¾÷È¸¿ø°¡ÀÔÆû ½ºÅ©¸³Æ®ÇÔ¼ö
 ******************************************************************************/

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

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

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

//-----------------------------------------------------------------------------
// ÀúÀå Ã³¸®
//-----------------------------------------------------------------------------
function f_Save()
{
    var rtn_cd = true;
    //--------------------------------------------
    // ¾ÆÀÌµð
    //--------------------------------------------
    if (document.PUBLIC_FORM.CF_ID.value == "")
    {
        alert("¾ÆÀÌµðÀ» ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À");
        document.PUBLIC_FORM.CF_ID.focus();
        rtn_cd = false;
    }
    else if (document.PUBLIC_FORM.CF_ID.value.length < 4) 
    {
        alert("¾ÆÀÌµð´Â ÃÖ¼Ò 4ÀÚÀÌ»ó ÀÔ·ÂÇÏ¼Å¾ß ÇÕ´Ï´Ù.");
        document.PUBLIC_FORM.CF_ID.focus();
        rtn_cd = false;
    }
    //--------------------------------------------
    // ºñ¹Ð¹øÈ£
    //--------------------------------------------
    else if (document.PUBLIC_FORM.CF_PASS.value == "" && "" == document.PUBLIC_FORM.UPDATE_KBN.value)
    {
        alert("ºñ¹Ð¹øÈ£¸¦ ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À");
        document.PUBLIC_FORM.CF_PASS.focus(); 
        rtn_cd = false;
    }
    // ºñ¹Ð¹øÈ£ °Ë»ç
    else if ((document.PUBLIC_FORM.CF_PASS.value != document.PUBLIC_FORM.CF_REPASS.value) && 
             "" == document.PUBLIC_FORM.UPDATE_KBN.value) 
    {
        alert("ºñ¹Ð¹øÈ£°¡ ÀÏÄ¡ÇÏÁö ¾Ê½À´Ï´Ù");
        document.PUBLIC_FORM.CF_PASS.value = "";
        document.PUBLIC_FORM.CF_PASS.value = "";
        document.PUBLIC_FORM.CF_PASS.focus(); 
        rtn_cd = false;
    }
    //--------------------------------------------
    // È¸»ç¸í
    //--------------------------------------------
    else if (document.PUBLIC_FORM.CF_SANGHO.value == "" ) 
    {
        alert("È¸»ç¸íÀ» ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À");
        document.PUBLIC_FORM.CF_SANGHO.focus();
        rtn_cd = false;
    }
	//--------------------------------------------
    // ÀÌ¸§
    //--------------------------------------------
    else if (document.PUBLIC_FORM.CF_NAME.value == "" ) 
    {
        alert("´ëÇ¥ÀÚ¸íÀ» ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À");
        document.PUBLIC_FORM.CF_NAME.focus();
        rtn_cd = false;
    }
	//--------------------------------------------
    // ÀüÈ­¹øÈ£1
    //--------------------------------------------
    else if (document.PUBLIC_FORM.CF_TEL1.value == "" ) 
    {
        alert("ÀüÈ­¹øÈ£¸¦ ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À");
        document.PUBLIC_FORM.CF_TEL1.focus();
        rtn_cd = false;
    }
	//--------------------------------------------
    // ÀüÈ­¹øÈ£2
    //--------------------------------------------
    else if (document.PUBLIC_FORM.CF_TEL2.value == "" ) 
    {
        alert("ÀüÈ­¹øÈ£¸¦ ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À");
        document.PUBLIC_FORM.CF_TEL2.focus();
        rtn_cd = false;
    }
	//--------------------------------------------
    // ÀüÈ­¹øÈ£3
    //--------------------------------------------
    else if (document.PUBLIC_FORM.CF_TEL3.value == "" ) 
    {
        alert("ÀüÈ­¹øÈ£¸¦ ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À");
        document.PUBLIC_FORM.CF_TEL3.focus();
        rtn_cd = false;
    }
	//--------------------------------------------
    // ÀÌ¸ÞÀÏ
    //--------------------------------------------
    //else if (document.PUBLIC_FORM.CF_MAIL.value == "" ) 
    //{
    //    alert("e-MailÀ» ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À");
    //    document.PUBLIC_FORM.CF_MAIL.focus();
    //    rtn_cd = false;
    //}
    //--------------------------------------------
    // ÀÌ¸ÞÀÏ
    //--------------------------------------------
    else if( "" != document.PUBLIC_FORM.CF_MAIL.value && !document.PUBLIC_FORM.CF_MAIL.value.match(/([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9._-]+)/gi))
    {
        alert("¿Ã¹Ù¸¥[e-Mail]À» ÀÔ·ÂÇØÁÖ½Ê½Ã¿ä.");
        document.PUBLIC_FORM.CF_MAIL.focus();
        rtn_cd = false;
    }
    //--------------------------------------------
    // ¿ìÆí¹øÈ£
    //--------------------------------------------
    else if (document.PUBLIC_FORM.CF_ZIP1.value == "" )
    {
        alert("¿ìÆí¹øÈ£Ã£±â¸¦ ÀÌ¿ëÇØ ÁÖ½Ê½Ã¿À");
        rtn_cd = false;
    }
    //--------------------------------------------
    // ÁÖ¿ä»ç¾÷³»¿ë
    //--------------------------------------------
    else if (document.PUBLIC_FORM.CF_TITLE.value == "" )
    {
        alert("ÁÖ¿ä»ç¾÷³»¿ëÀ» ÀÔ·ÂÇØÁÖ½Ê½Ã¿ä.");
        document.PUBLIC_FORM.CF_TITLE.focus();
        rtn_cd = false;
    }
    
	
	if (true == rtn_cd)
    {
        if ("" == document.PUBLIC_FORM.UPDATE_KBN.value)
        {
            document.PUBLIC_FORM.UPDATE_KBN.value = "save";
        }
        document.PUBLIC_FORM.submit();
    }

	return rtn_cd;
}

