/* 화면 가운데 팝업띄우기
   */
  function cmm_popup_windowOpenResize_title(url, popupwidth, popupheight, popup_title)
  {
  	Top = (window.screen.height - popupheight) / 3;
  	Left = (window.screen.width - popupwidth) / 2;
  	if (Top < 0) Top = 0;
  	if (Left < 0) Left = 0;
  	Future = "fullscreen=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,left=" + Left + ",top=" + Top + ",width=" + popupwidth + ",height=" + popupheight;
  	PopUpWindow = window.open(url, popup_title, Future);
  	PopUpWindow.focus();
  }
