
/***************************************
* 이미지로 바로 팝업띄우기
****************************************/
function view(what) {
  window.open("/Common/Html/ImageView.html?src="+what,'','scrollbars=yes,status=no,toolbar=no,resizable=0,location=no,menu=no,width=10,height=10');
//  var imgwin = window.open("",'WIN','scrollbars=yes,status=no,toolbar=no,resizable=0,location=no,menu=no,width=10,height=10');
//  imgwin.focus();
//  imgwin.document.open();
//  imgwin.document.write("<html>\n");
//  imgwin.document.write("<head>\n");
//  imgwin.document.write("<title>IMAGE VIEW</title>\n");
//  imgwin.document.write("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=euc-kr\">\n");
//
//  imgwin.document.write("<sc"+"ript>\n");
//  imgwin.document.write("function resize() {\n");
//  imgwin.document.write("pic = document.il;\n");
//
//  imgwin.document.write(" var imgw = eval(pic).width; ");
//  imgwin.document.write("  if (eval(pic).width > 800){ eval(pic).width = 800\n "); //800px보다크면 800으로
//  imgwin.document.write(" } else if(eval(pic).width < 800){ eval(pic).width = eval(pic).width\n} "); //800px보다작으면 원래크기로
//
//  imgwin.document.write(" if (eval(pic).height) { var name = navigator.appName\n");
//  imgwin.document.write("  if (name == 'Microsoft Internet Explorer') { myHeight = eval(pic).height + 40; myWidth = eval(pic).width + 10;\n");
//  imgwin.document.write("  } else { myHeight = eval(pic).height + 9; myWidth = eval(pic).width; }\n");
//  imgwin.document.write("  clearTimeout();\n");
//  imgwin.document.write("  var height = screen.height;\n");
//  imgwin.document.write("  var width = screen.width;\n");
//  imgwin.document.write("  var leftpos = width / 2 - myWidth / 2;\n");
//  imgwin.document.write("  var toppos = height / 2 - myHeight / 2; \n");
//  imgwin.document.write("  self.moveTo(leftpos, toppos);\n");
//  imgwin.document.write("  if (myWidth > width) { myWidth = width; }\n");
//  imgwin.document.write("  self.resizeTo(myWidth, myHeight+50);\n");
//  imgwin.document.write("}else setTimeOut(resize(), 100);}\n");
//  imgwin.document.write("</sc"+"ript>\n");
//
//  imgwin.document.write("</head>\n");
//  imgwin.document.write('<body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0" bgcolor="#FFFFFF">\n');
//  imgwin.document.write('내용보기\n');
//
//  imgwin.document.write("<img border=\"0\" src=\""+what+"\" name=il onload='resize();' style='cursor:pointer' onclick='window.close();'>\n");
//
//  imgwin.document.write("</body>\n");
//  imgwin.document.write("</html>\n");
//  imgwin.document.close();
}
