팝업창 화면 가운데 표시하기
로빈아빠
본문
<script type="text/javascript">
self.focus();
//document.fpasswordlost.mb_email.focus();
$(function() {
var sw = screen.width;
var sh = screen.height;
var cw = document.body.clientWidth;
var ch = document.body.clientHeight;
var top = sh / 2 - ch / 2 - 100;
var left = sw / 2 - cw / 2;
moveTo(left, top);
});
</script>
댓글목록
등록된 댓글이 없습니다.