[부산] 북구 대천리중학교 방송장비설치공사
「대천리 중학교 강당 방송장비 설치 」 【학교강당 방송장비 설치 및 유지보수】
작년 말 부산 북구에 위치한 대천리중학교 방송 장비 납품 및 설치 공사를 수주하였다.
작년 장림여자중학교, 양덕초등학교에 이어 세 번째 공사로 연말에 수주하여 한 해를 넘기고 말았다.
학교 강당 방송 설치나 유지 · 보수에 있어 아무래도 난이도가 좀 평이한 편이다
<학교,병원,회사,유치원,어린이집 방송장비 및 프로젝터 설치는 Call 1600-1064>
방송랙 설치.
HDMI매트릭스/블루레이플레이어/HD모듈레이터/멀티플레이어 취부.
오디오앰프설치
오디오 믹서 설치.
무선안테나/스테이지스피커설치
어레이스피커 설치.
프로젝터 설치.
<!-- /** * 이미지 테이블크기와 맞쳐 재조정 */ 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(); } //-->