/*******************************************************************************
* ÆÄ ÀÏ ¸í: ocntactus.js
* ÀÛ¾÷³»¿ë: Á¦ÈÞ¹®ÀÇ
* ÀÎ    ¼ö: 
* ÀÛ¼ºÀÏÀÚ: 2006-03-01
* ÀÛ ¼º ÀÚ: (ÁÖ)ÀÌÁ¨
* º¯°æÀÌ·Â: 
*******************************************************************************/

//-----------------------------------------------------------------------------
// µî·Ï
//-----------------------------------------------------------------------------
function f_Save()
{
    var J_KBN   = document.PUBLIC_FORM.J_KBN.value;

    if ( "" == document.PUBLIC_FORM.TITLE.value )
    {
        alert("Á¦¸ñÀ» ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿ä.");
        document.PUBLIC_FORM.TITLE.focus(); 
        return false;
    }
    if ( "" == document.PUBLIC_FORM.BIGO.value )
    {
        alert("³»¿ëÀ» ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿ä.");
        document.PUBLIC_FORM.BIGO.focus(); 
        return false;
    }
    if ( "" == document.PUBLIC_FORM.TEL.value )
    {
        alert("¿¬¶ôÃ³¸¦ ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿ä.");
        document.PUBLIC_FORM.TEL.focus(); 
        return false;
    }
    if ( "" == document.PUBLIC_FORM.DAMDANG.value )
    {
        if ("D" != J_KBN )
        {
            alert("´ã´çÀÚ¸íÀ» ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿ä.");
        }
        else
        {
            alert("½Å°íÀÚ¸íÀ» ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿ä.");
        }
        document.PUBLIC_FORM.DAMDANG.focus(); 
        return false;
    }
    
    if ("D" != J_KBN )
    {
        if ( "" == document.PUBLIC_FORM.SANGHO.value )
        {
            alert("»óÈ£¸¦ ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿ä.");
            document.PUBLIC_FORM.SANGHO.focus(); 
            return false;
        }
        if ( "" == document.PUBLIC_FORM.UPJONG.value )
        {
            alert("¾÷Á¾À» ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿ä.");
            document.PUBLIC_FORM.UPJONG.focus(); 
            return false;
        }
    }

    document.PUBLIC_FORM.target = "";
    document.PUBLIC_FORM.action = "contactus_tran.php";
    document.PUBLIC_FORM.FRM_STATUS.value = "save";
    PUBLIC_FORM.submit();
}

