﻿function newphoto( imgUrl  ) {
  //pop화면의 가로,세로크기
  var varHeight = 620;
  var varWidth = 820;

	window.open("popup_photo.jsp?image="+imgUrl,"HANJIN_PHOTO",
              "width=" + varWidth + ",height=" + varHeight + ",top=" + (screen.height - varHeight)/2 + ",left=" + (screen.width - varWidth)/2 +
              "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=yes, copyhistory=1");
}
