

// 입력창 늘리기
function zoomform(zooms){
    if(navigator.appName == 'Netscape') {
        alert("[입력창 늘리기]는\n\n익스플러4.0 이상의 브라우저를 사용해야\n\n사용 가능한 기능버튼입니다.\n\n네스케이프에서는 이용할 수 없습니다.");
        return;
    }

    zooms.rows = zooms.rows+5;

    //if(zooms.rows == 3){zooms.rows =  10;}
    //else if(zooms.rows == 10){zooms.rows =  20;}
    //else if(zooms.rows == 15){zooms.rows =  20;}
    //else if(zooms.rows == 20){zooms.rows =  30;}
    //else if(zooms.rows == 30){zooms.rows =  40;}
    //else {zooms.rows =  3;}
}

// 간단한 서치
function check_top_search() {
    var m=document.mv_top_search;

    if (m.ps_search.value.length == "") {
       alert("검색어를 입력하여 주십시오");
       m.ps_search.focus();
       return false;
    }
}

// 제목길이제한

function on_over(x)
{
document.getElementById("on_num"+x).style.width="auto"; //
document.getElementById("on_num"+x).style.filter="alpha(opacity=80)";
}
function on_out(x)
{
document.getElementById("on_num"+x).style.width="200px";
document.getElementById("on_num"+x).style.filter="alpha(opacity=100)";
}





