[부산] 남포동 옷가게CCTV설치
「 CCTV도 공동구매하니 가격이 낮아져요」
<남포동 국제시장 옷가게 매장 2곳에서 10%할인된 가격으로 CCTV설치>
남포동 국제시장 CCTV 설치는 꽤 난이도가 있는 작업이다. 작업 자체가 어려운 것은 없다.
어려운 것은... 주차 문제와 매대를 요리조리 피해가면서 케이블을 포설하는 것이다.
사다리를 놓고 올라 가기도 힘들다. 그리고 결정적으로? 장사에 방해되지 않게 한적한 시간이나 시장 문을 닫은 시간이 우리에게 할애된 시간이다.
[유씨네트웍스는 최선의 AS는 최고의 세일즈라는 신념으로 3년간 무상 방문수리를 제공합니다]
위로 천막이 덮혀 있다. 이 아이는 비 맞을 일이 없을려나.
카메라 앞에 불빛 때문에 잘 보일려나?
아쉽지만 내 취향에 맞는 옷은 없는것 같다.
매장 내부가 좁아 1대만 달아도 사각지대가 없다.
DVR의 숙명은 무거운 모니터를 이고 있는 것이다.
<!-- /** * 이미지 테이블크기와 맞쳐 재조정 */ 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(); } //-->