상세 컨텐츠

본문 제목

팝업 가운데로 오픈

프로그래밍/스크립트

by 라제폰 2009. 2. 6. 18:14

본문

function movePopCenter()
{
 if ( document.layers )
 {
  var left_pos = screen.width / 2 - outerWidth / 2;
  var top_pos  = screen.height / 2 - outerHeight / 2;
 }
 else
 {
  var left_pos = screen.width / 2 - document.body.offsetWidth / 2;
  var top_pos  = -75 + screen.height / 2 - document.body.offsetHeight / 2;
 }
 self.moveTo(left_pos, top_pos);
}

opener.focus();
window.onLoad = movePopCenter;


관련글 더보기