	var W;
	var H;
	function NtReportCommonImgReSize(){
			W = document.ReportImg.width;
			H = document.ReportImg.height;
			
			if ( W > 530){
				document.ReportImg.width = 530;
			}
			//document.write("<input type='hidden' name='OldWidth' value='"+ W +"'>");
			//document.write("<input type='hidden' name='OldHeight' value='"+ H +"'>");
	}
	
	function NtReportCommonImgPopUp () {
		var ImgWidth = document.ReportImg.width;
		var ImgHeight = document.ReportImg.height;
		
		var ImgSrc = document.ReportImg.src;		
		
		Stringa = "top=0,left=0,width="+ImgWidth+",height="+ImgHeight+",scrollbars=yes";
		
		//alert(ImgSrc);
		
		//popup=window.open("","NtReportImgPopUp",Stringa);
		ReportPopup=window.open("","NtReportImgPopUp",Stringa);
		
		ReportPopup.document.open();
		ReportPopup.document.write("<HTML><HEAD>");
		ReportPopup.document.write("<TITLE>:: ÀÌ¹ÌÁö º¸±â::</TITLE>");
		ReportPopup.document.write("</HEAD><BODY leftmargin='0' topmargin='0' rightmargin='0' bottommargin='0' oncontextmenu='return false' onselectstart='return false' ondragstart='return false' col>");
		ReportPopup.document.write("<img SRC='" +ImgSrc+ "' name='NtReportViewImg' style='CURSOR:HAND;' onclick='window.close();' onload='window.resizeTo(document.NtReportViewImg.width,document.NtReportViewImg.height)'>");
		ReportPopup.document.write("</CENTER>");
		ReportPopup.document.write("</BODY></HTML>");
		//ReportPopup.document.close();
	}
