/** *---------------------------------------------------------- * SMSFLY *---------------------------------------------------------- * * @author 김정인 * @since 2019.08.30 **/ function openKMCISWindow(KMCISPopupUrl){ var UserAgent = navigator.userAgent; /* 모바일 접근 체크*/ // 모바일일 경우 (변동사항 있을경우 추가 필요) if (UserAgent.match(/iPhone|iPod|Android|Windows CE|BlackBerry|Symbian|Windows Phone|webOS|Opera Mini|Opera Mobi|POLARIS|IEMobile|lgtelecom|nokia|SonyEricsson/i) != null || UserAgent.match(/LG|SAMSUNG|Samsung/) != null) { document.reqKMCISForm.target = ''; } // 모바일이 아닐 경우 else { var popupX = (window.screen.width / 2) - (425 / 2); var popupY= (window.screen.height / 2) - (550 / 2); KMCIS_window = window.open('', 'KMCISWindow', 'width=425, height=550, resizable=no, scrollbars=no, status=0, titlebar=0, toolbar=0, left='+popupX+', top='+popupY ); if(KMCIS_window == null){ alert(" ※ 윈도우 XP SP2 또는 인터넷 익스플로러 7 사용자일 경우에는 \n 화면 상단에 있는 팝업 차단 알림줄을 클릭하여 팝업을 허용해 주시기 바랍니다. \n\n※ MSN,야후,구글 팝업 차단 툴바가 설치된 경우 팝업허용을 해주시기 바랍니다."); } document.reqKMCISForm.target = 'KMCISWindow'; } window.name = "MemberRegister"; document.reqKMCISForm.action = KMCISPopupUrl; document.reqKMCISForm.submit(); }