// ESupport 팀에서 사용하는 Javascript 함수 라이브러리
// Javascript 옵션을 CMS 데이터 캡처 템플릿에서 선택한 경우 // 이 파일은 자동으로 HTML에 포함됩니다.


// Open new window 
function ShowNew(strUrl, strNewOptions)
{
    if (strNewOptions != '') // no custom options
        window.open(strUrl, "New", 'location=yes,toolbar=yes,menubar=no,status=no,scrollbars=yes,resizable=yes,top=200,left=200,width=550,height=325');
    else
        window.open(strUrl, "New", strNewOptions);
}

//서버 함수 openVST(popVST){에 대한 비주얼 시스템 투어를 엽니다.
function openVST(popVST){

            winpops=window.open(popVST,"PopVST",'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=613,height=404')

}

function openpopup(popurl){

            winpops=window.open(popurl,"PopURL",'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=480,height=312')

}

function openguide(popguide){

            winpops=window.open(popguide,"PopGuide",'toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1,width=750,height=300')

}

//CS-016885 및 CS-016886에 대한 컨텐츠를 열고 닫습니다.

function ShowHide(varSECTION) { if (document.all(varSECTION).style.display == "none") { document.all(varSECTION).style.display = ""; } else { document.all(varSECTION).style.display = "none"; } }

