[부산 CCTV 설치] 재송동 건설회사 사무실CCTV 보안 풀HD CCTV 카메라
이전설치할 카메라 / CCTV
금일 요청해주신 작업, 내부용 카메라1대 이전설치와 녹화기 세팅작업입니다 깔끔하게 떼어낸 장비들을 새로운 사무실안으로 설치하게 될것이구요!
일반적으로 신규설치에 비해 이전설치는 장비를 떼어내고, 잡자재 정리정돈부터 새 장소까지 새로 설치하게되므로 시간이 조금 더 소요되는 편입니다 <!-- /** * 이미지 테이블크기와 맞쳐 재조정 */ function resizeImage() { var img_max_width = 615; var use_origin_img = 'Y'; if(use_origin_img == 'N') {
return; }
var imgObj = document.getElementById("post_area").getElementsByTagName("img"); var osrc; for (i = 0; i ");
pNode.insertBefore(imgContainer, imgObj[i]); imgContainer.appendChild(imgObj[i]); osrc = imgObj[i].src;*/ if(imgObj[i].width > img_max_width) {
imgObj[i].style['width'] = img_max_width; imgObj[i].style['height'] = 'auto'; }
if( imgObj[i].parentNode.tagName != "A" ) { imgObj[i].style.cursor = "pointer";
imgObj[i].onclick = function(){ showPicture(this); } }
/*imgContainer.style.marginBottom = "0px"; imgObj[i].style.cursor = "pointer"; // declare onclick event
if( imgObj[i].parentNode.tagName == "div" ) {
if( imgObj[i].parentNode.parentNode.tagName == "A" ) { imgObj[i].onclick = function() {
if( this.parentNode.parentNode.target != "_blank" ){
location.href = this.parentNode.parentNode.href; } }; } else{
imgObj[i].onclick = function(){ showPicture(this); } } }
else if( imgObj[i].parentNode.tagName != "A" ) {
imgObj[i].onclick = function(){ showPicture(this); } }*/ }
document.getElementById("post_area").style.visibility = "visible"; } /** * 팝업 이미지 */ function showPicture(obj) { var imgObj = new Image(); imgObj.src = obj.src;
var wopt = "scrollbars=yes,status=no,resizable=no"; wopt += ",width=" + imgObj.width; wopt += ",height=" + imgObj.height; var wbody = " "; wbody += "function finalResize(){"; wbody += " var oBody=document.body;";
wbody += " var oImg=document.images[0];";
wbody += " var xdiff=oImg.width-oBody.clientWidth;";
wbody += " var ydiff=oImg.height-oBody.clientHeight-20;";
wbody += " window.resizeBy(xdiff,ydiff);"; wbody += "}"; wbody += " "; wbody += " "; wbody += " "; wbody += " ";
winResult = window.open("about:blank","",wopt);
winResult.document.open("text/html", "replace"); winResult.document.write(wbody); winResult.document.close(); return; } /** * 함수 실행 */ window.onload = function() { resizeImage(); } //-->