// 메뉴 배경 위치 조절
function change_menu(action) {
    if ("advantage" == action) {
        $('gui_menu').style.backgroundPosition = "29px -48px";
    } else if ("useinfo" == action) {
        $('gui_menu').style.backgroundPosition = "29px -98px";
    } else if ("rule" == action) {
        $('gui_menu').style.backgroundPosition = "29px -146px";
    } else if ("price" == action) {
        $('gui_menu').style.backgroundPosition = "29px -194px";
    } else {
        $('gui_menu').style.backgroundPosition = "29px 0";
    }
}

// crmcenter
function chkForm(f) {
    if (f.name.value.length == 0) {
        alert('이름을 입력해 주세요.');
        f.name.focus();
        return false;
    }

    if (f.phone.value.lenbth == 0) {
        alert('연락처를 입력해 주세요.');
        f.phone.focus();
        return false;
    }

    if (f.email.value.length == 0) {
        alert('메일주소를 입력해 주세요.');
        f.email.focus();
        return false;
    }

    if (f.subject.value.length == 0) {
        alert('제목을 입력해 주세요.');
        f.subject.focus();
        return false;
    }

    if (f.body.value.length == 0) {
        alert('내용을 입력해 주세요');
        f.body.focus();
        return false;
    }
    return true;
}

