" + "
" + "카지노 룰렛
"); } /* ######################## # 문서검색 스크립트 ######################## */ var isChanged = false; var fixKeyword = ""; var fixGubun = "2"; // 1:전체, 2:현재 function resetKeyword() { fixGubun = "2"; fixKeyword = ""; $j("input:radio[name='searchGubun']:input[value='"+fixGubun+"']").prop("checked", true); } function searchKeyword() { procSearchKeyword(); } function procSearchKeyword() { if (isNullTrim($j("#searchWord").val())) { alert('검색어를 입력해 주세요.'); return; } isChanged = false; fixKeyword = $j("#searchWord").val(); fixGubun = $j('input:radio[name=searchGubun]:checked').val(); viewDoc(currentDocValues.rcpNo, currentDocValues.dcmNo, currentDocValues.eleId, currentDocValues.offset, currentDocValues.length, currentDocValues.dtd); } $j(function() { $j("#searchWord").change(function() { if ($j("#searchWord").val() != fixKeyword) isChanged = true; else isChanged = false; }); $j("input:radio[name='searchGubun']").change(function() { if ($j('input:radio[name=searchGubun]:checked').val() != fixGubun) isChanged = true; else isChanged = false; }); }); /* ######################## # 하이라이트(문서검색후) 스크립트 ######################## */ var highlight_obj; var highlight_idx; function procHighlight() { highlight_obj = $j("#ifrm").contents().find('.highlight'); if (highlight_obj.length == 0) { // 전체검색일때 제일 처음 목차 선택된 것처럼 css 효과만 부여 if (fixGubun == "1") { $j("#listTree").jstree("deselect_all"); $j("#listTree ul li:eq(0) > a").attr("aria-selected", true); $j("#listTree ul li:eq(0) > a").addClass("jstree-clicked"); } alert("일치하는 검색어["+fixKeyword+"]가 없습니다."); } else { highlight_idx = 0; moveHighlight(highlight_idx); } $j("#loadingMask").hide(); $j("#loadingWrap").hide(); } function moveHighlight(idx) { // 전체검색일때 키워드에 해당하는 목차 클릭 이벤트 if (fixGubun == "1") { 카지노 룰렛 top = $j(highlight_obj[idx]).offset().top; for (카지노 룰렛 i=0; i= tocPositionItems[i]) { //이미 같은 목차가 선택되어 있으면 스킵 if ($j("#listTree ul li:eq(" + (tocPositionIds[i]-1) + ") > a").attr("aria-selected") != "true") { $j("#listTree ul li:eq(" + (tocPositionIds[i]-1) + ") > a").trigger("click"); } break; } } } highlight_obj.removeClass('on'); $j(highlight_obj[idx]).addClass('on'); // 세로 영역 맞추기 카지노 룰렛 ifrmTop = $j('#ifrm').contents().scrollTop(); 카지노 룰렛 ifrmBottom = ifrmTop + $j('#ifrm').height(); 카지노 룰렛 highlightTop = $j(highlight_obj[idx]).offset().top; 카지노 룰렛 highlightBottom = highlightTop + $j(highlight_obj[idx]).height(); $j('#ifrm').contents().scrollTop(highlightTop); // 가로 영역 맞추기 카지노 룰렛 offsetWidth = highlight_obj[idx].offsetWidth; 카지노 룰렛 offsetLeft = $j(highlight_obj[idx]).offset().left; 카지노 룰렛 offsetRight = offsetLeft + offsetWidth; 카지노 룰렛 ifrmWidth = $j('#ifrm').width(); 카지노 룰렛 ifrmLeft = $j('#ifrm').contents().scrollLeft(); 카지노 룰렛 ifrmRight = ifrmLeft + ifrmWidth; if(ifrmWidth < offsetRight + 30) { $j('#ifrm').contents().scrollLeft(offsetRight - ifrmWidth + 30); } else { $j('#ifrm').contents().scrollLeft(0); } /* if (fn_isMobileApp()=="pc") { $j('#contentsWrapDiv').css('height','calc(100vh - 115px)'); } */ } function movePrev() { if (isChanged) { alert("검색정보를 수정하였습니다. 검색을 먼저 하시기 바랍니다."); return; } if (!isNullTrim(highlight_obj) != "" && highlight_obj.length > 0) { if (highlight_idx == 0) { highlight_idx = highlight_obj.length - 1; //처음 위치면 마지막으로 이동 } else { highlight_idx += -1; } moveHighlight(highlight_idx); } } function moveNext() { if (isChanged) { alert("검색정보를 수정하였습니다. 검색을 먼저 하시기 바랍니다."); return; } if (!isNullTrim(highlight_obj) != "" && highlight_obj.length > 0) { if (highlight_obj.length == (highlight_idx + 1)) { highlight_idx = 0; //마지막 위치면 처음으로 이동 } else { highlight_idx += 1; } moveHighlight(highlight_idx); } } /* ######################## # 다운로드/인쇄/닫기 버튼 이벤트 ######################## */ function openPdfDownload(rcpNo, dcmNo) { 카지노 룰렛 size = getOpenSize(530, 480); 카지노 룰렛 url = "/pdf/download/main.do?rcp_no=" + rcpNo + "&dcm_no=" + dcmNo; 카지노 룰렛 win = window.open( url, 'DOWNLOAD', ''+size+', resizable=no, status=no, scrollbars=no'); if(win == null) alert("팝업차단을 해제해주세요."); else win.focus(); } function showPdfStopMsg(title, cont, type, type2){ 카지노 룰렛 layerPopHtml = ""; layerPopHtml +='
'; layerPopHtml +='
'; layerPopHtml += title ; layerPopHtml +=' 확인'; layerPopHtml +='
'; layerPopHtml +='
'; layerPopHtml +='
'; layerPopHtml += cont; layerPopHtml +='
'; layerPopHtml +='
'; layerPopHtml +='
'; $j('#winCommMsg').append(layerPopHtml); $j('#winCommMsg').show(); } function printDoc() { var printFrame = document.getElementById('ifrm'); var agent = navigator.userAgent.toLowerCase(); if (agent.indexOf('trident') > -1) ifrm.focus(); else printFrame.focus(); 카지노 룰렛 prependHTML = ''; prependHTML += '
'; prependHTML += '삼성중공업'; if ($j('#family option:selected').val() != "null") prependHTML += ' / ' + $j('#family option:selected').text() + ' '; if ($j('#att option:selected').val() != "null") prependHTML += ' / ' + $j('#att option:selected').text() + ' '; prependHTML += '
'; $j('#ifrm').contents().find('body').prepend(prependHTML) // title추가 printFrame.contentWindow.print(); $j('#ifrm').contents().find('#printDocTitle').remove(); // 다시 title삭제 } function windowClose(){ if (isInApp()) { if (navigator.userAgent.toLowerCase().indexOf('android') > -1) { android_dart.appFinish(); window.close(); } else { window.webkit.messageHandlers.DARTJS_APPFINISH.postMessage(''); window.close(); } } else { window.close(); } } /* ######################## # RSS ######################## */ function scrapFeed(cik) { var rssValue = ""; if(cik == "today"){ rssValue = "/api/todayRSS.xml"; } else{ rssValue = "/api/companyRSS.xml?crpCd=" + cik; } if(window.clipboardData){ // IE처리 if (window.clipboardData.setData("Text", rssValue)) { alert('클립보드에 복사되었습니다'); } } else { // 비IE 처리 window.prompt ("Ctrl+C를 눌러 클립보드로 복사하세요", rssValue); } } /* ######################## # 하이퍼링크 ######################## */ // 상세표 function goBookmark(to, from, toc) { $j("#listTree ul li a").each(function() { if ($j(this).text() == toc) { //이미 같은 목차가 선택되어 있으면 스킵 if ($j(this).attr("aria-selected") != "true") { $j(this).trigger("click"); } setTimeout(function() { var bookmark = $j('#ifrm').contents().find("a[class="+to+"]").offset(); if (bookmark == null) { $j('#ifrm').contents().scrollTop(0); } else { $j('#ifrm').contents().scrollTop(bookmark.top); } }, 500); return false; } }); } // 책갈피 // 속성값에 id가 들어오면 무조건 책갈피!!! // 신 다트편집기 책갈피 로직 변경대응 (2024.01 nrseo) function goBookmark2(atocId, text) { var data = $j("#listTree").jstree(true)._model.data; $j.each(data, function(i, v) { if (v.original) { if (v.original["atocId"] == atocId) { var id = v.original["id"]; //이미 같은 목차가 선택되어 있으면 스킵 if ($j("#listTree ul li[id=" + id + "] > a").attr("aria-selected") != "true") { $j("#listTree ul li[id=" + id + "] > a").trigger("click"); } setTimeout(function() { $j("#ifrm").contents().find("[id^=bookmark_]").each(function() { if (text == $j(this).attr("bookmarktext")) { $j(this).addClass("bookmark"); 카지노 룰렛 bookmark = $j(this).offset(); if (bookmark == null) { $j('#ifrm').contents().scrollTop(0); } else { $j('#ifrm').contents().scrollTop(bookmark.top); } return false; } }); }, 500); return false; } } }); } /* ######################## # 기타(변경확률낮음) ######################## */ function subPopView (id) { $j("#" + id).show(); } function popClose(id) { $j("#" + id).hide(); } /* ######################## # 기타(사용여부 불확실) ######################## */ //사용자가 '예'를 선택했을 때 최종문서로 이동한다. function confirmFinalDoc(bnt){ 카지노 룰렛 rcp_no = "" ; if(bnt=='yes'){ if(rcp_no == ""){ rcp_no = 20250317800118; } changeFamily("rcpNo="+rcp_no); } } function replaceHtml(el, html) { 카지노 룰렛 oldEl = (typeof el === "string" ? document.getElementById(el) : el); 카지노 룰렛 newEl = oldEl.cloneNode(false); newEl.innerHTML = html; oldEl.parentNode.replaceChild(newEl, oldEl); return newEl; };
문서목차
☞ 본 공시사항은 [한국거래소 유가증권시장본부] 소관사항입니다.